From c77100f029a49b09a48718e80f4ddc5b3a46a9b4 Mon Sep 17 00:00:00 2001 From: dman776 Date: Tue, 18 Apr 2023 12:15:51 -0500 Subject: [PATCH] fix nightly pipeline only running check,build,save steps (#794) --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4671689b..2c2eee43 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,6 +54,7 @@ jobs: - run: name: Deploy Files command: scp -o StrictHostKeyChecking=no ~/${CIRCLE_BRANCH}_${ARTIFACTS_FILE} ${SSH_USER}@${SSH_HOST}:${TARGET_DIR} + check2build: machine: enabled: true @@ -65,6 +66,7 @@ jobs: name: Check2build failure (build not needed) when: on_fail command: circleci-agent step halt + save_build_info: machine: enabled: true @@ -151,9 +153,6 @@ workflows: - build: requires: - check2build - - save_build_info: - requires: - - build - process_artifacts_nightly: requires: - build @@ -179,3 +178,6 @@ workflows: filters: branches: only: main + - save_build_info: + requires: + - process_artifacts_nightly