@@ -39,6 +39,7 @@ mainBuildFilters: &mainBuildFilters
39
39
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
40
40
- ' update-v8-snapshot-cache-on-develop'
41
41
- ' update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40'
42
+ - ' feat/cy-prompt'
42
43
43
44
# usually we don't build Mac app - it takes a long time
44
45
# but sometimes we want to really confirm we are doing the right thing
@@ -49,6 +50,7 @@ macWorkflowFilters: &darwin-workflow-filters
49
50
- equal : [ develop, << pipeline.git.branch >> ]
50
51
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
51
52
- equal : [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
53
+ - equal : [ 'feat/cy-prompt', << pipeline.git.branch >> ]
52
54
- equal :
53
55
[
54
56
' update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40' ,
@@ -64,6 +66,7 @@ linuxArm64WorkflowFilters: &linux-arm64-workflow-filters
64
66
- equal : [ develop, << pipeline.git.branch >> ]
65
67
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
66
68
- equal : [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
69
+ - equal : [ 'feat/cy-prompt', << pipeline.git.branch >> ]
67
70
- equal :
68
71
[
69
72
' update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40' ,
@@ -91,6 +94,7 @@ windowsWorkflowFilters: &windows-workflow-filters
91
94
- equal : [ develop, << pipeline.git.branch >> ]
92
95
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
93
96
- equal : [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
97
+ - equal : [ 'feat/cy-prompt', << pipeline.git.branch >> ]
94
98
- equal :
95
99
[
96
100
' update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40' ,
@@ -169,7 +173,7 @@ commands:
169
173
name : Set environment variable to determine whether or not to persist artifacts
170
174
command : |
171
175
echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
172
- echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40" ]]; then
176
+ echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "update-chrome-stable-from-136.0.7103.113-beta-from-137.0.7151.40" && "$CIRCLE_BRANCH" != "feat/cy-prompt" ]]; then
173
177
export SHOULD_PERSIST_ARTIFACTS=true
174
178
fi' >> "$BASH_ENV"
175
179
# You must run `setup_should_persist_artifacts` command and be using bash before running this command
0 commit comments