From 3c19edba56baf625b070a82c1f0bd81cefe62889 Mon Sep 17 00:00:00 2001 From: Matt Henkes Date: Thu, 24 Mar 2022 15:12:35 -0500 Subject: [PATCH] chore: [multi-domain] enable binary builds and more tests for the multi-domain branch (#20773) --- circle.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index e6a9d99dfa79..39326a2783a4 100644 --- a/circle.yml +++ b/circle.yml @@ -30,6 +30,8 @@ mainBuildFilters: &mainBuildFilters - develop - 10.0-release - fix-beta-build-caching + - feature-multidomain + # 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 @@ -39,6 +41,7 @@ macWorkflowFilters: &mac-workflow-filters or: - equal: [ develop, << pipeline.git.branch >> ] - equal: [ fix-beta-build-caching, << pipeline.git.branch >> ] + - equal: [ feature-multidomain, << pipeline.git.branch >> ] - matches: pattern: "-release$" value: << pipeline.git.branch >> @@ -48,6 +51,7 @@ windowsWorkflowFilters: &windows-workflow-filters or: - equal: [ master, << pipeline.git.branch >> ] - equal: [ develop, << pipeline.git.branch >> ] + - equal: [ feature-multidomain, << pipeline.git.branch >> ] - equal: [ fix-beta-build-caching, << pipeline.git.branch >> ] - matches: pattern: "-release$" @@ -1633,7 +1637,7 @@ jobs: - run: name: Check current branch to persist artifacts command: | - if [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "fix-beta-build-caching" ]]; then + if [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "fix-beta-build-caching" && "$CIRCLE_BRANCH" != "feature-multidomain" ]]; then echo "Not uploading artifacts or posting install comment for this branch." circleci-agent step halt fi