From 20605324978a0822b74ba2de8307b8fd3e62b112 Mon Sep 17 00:00:00 2001 From: Mark Noonan Date: Sun, 6 Nov 2022 13:21:24 -0500 Subject: [PATCH] run more CI steps on this branch --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 94a5a54a0b37..5c45077e4a83 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ mainBuildFilters: &mainBuildFilters branches: only: - develop - - 'release/11.0.0' + - 'marktnoonan/windows-test-updates' # usually we don't build Mac app - it takes a long time # but sometimes we want to really confirm we are doing the right thing @@ -36,7 +36,7 @@ macWorkflowFilters: &darwin-workflow-filters when: or: - equal: [ develop, << pipeline.git.branch >> ] - - equal: [ 'release/11.0.0', << pipeline.git.branch >> ] + - equal: [ 'marktnoonan/windows-test-updates', << pipeline.git.branch >> ] - matches: pattern: "-release$" value: << pipeline.git.branch >> @@ -45,7 +45,7 @@ linuxArm64WorkflowFilters: &linux-arm64-workflow-filters when: or: - equal: [ develop, << pipeline.git.branch >> ] - - equal: [ 'release/11.0.0', << pipeline.git.branch >> ] + - equal: [ 'marktnoonan/windows-test-updates', << pipeline.git.branch >> ] - matches: pattern: "-release$" value: << pipeline.git.branch >> @@ -63,7 +63,7 @@ windowsWorkflowFilters: &windows-workflow-filters when: or: - equal: [ develop, << pipeline.git.branch >> ] - - equal: [ 'release/11.0.0', << pipeline.git.branch >> ] + - equal: [ 'marktnoonan/windows-test-updates', << pipeline.git.branch >> ] - matches: pattern: "-release$" value: << pipeline.git.branch >> @@ -130,7 +130,7 @@ commands: - run: name: Check current branch to persist artifacts command: | - if [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/11.0.0" ]]; then + if [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "marktnoonan/windows-test-updates" ]]; then echo "Not uploading artifacts or posting install comment for this branch." circleci-agent step halt fi