Skip to content

Commit 4d8444a

Browse files
authored
chore: make sure to test against cypress recipes release/15.0.0 branch (#31832)
1 parent d8cf6dc commit 4d8444a

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.circleci/workflows.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ mainBuildFilters: &mainBuildFilters
3838
- /^release\/\d+\.\d+\.\d+$/
3939
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
4040
- 'update-v8-snapshot-cache-on-develop'
41-
- 'feat/add_built_ins_minimal'
41+
- 'chore/test_cypress_recipes_15'
4242

4343
# usually we don't build Mac app - it takes a long time
4444
# but sometimes we want to really confirm we are doing the right thing
@@ -49,7 +49,7 @@ macWorkflowFilters: &darwin-workflow-filters
4949
- equal: [ develop, << pipeline.git.branch >> ]
5050
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
5151
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
52-
- equal: [ 'feat/add_built_ins_minimal', << pipeline.git.branch >> ]
52+
- equal: [ 'chore/test_cypress_recipes_15', << pipeline.git.branch >> ]
5353
- matches:
5454
pattern: /^release\/\d+\.\d+\.\d+$/
5555
value: << pipeline.git.branch >>
@@ -60,7 +60,7 @@ linuxArm64WorkflowFilters: &linux-arm64-workflow-filters
6060
- equal: [ develop, << pipeline.git.branch >> ]
6161
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
6262
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
63-
- equal: [ 'feat/add_built_ins_minimal', << pipeline.git.branch >> ]
63+
- equal: [ 'chore/test_cypress_recipes_15', << pipeline.git.branch >> ]
6464
- matches:
6565
pattern: /^release\/\d+\.\d+\.\d+$/
6666
value: << pipeline.git.branch >>
@@ -83,7 +83,7 @@ windowsWorkflowFilters: &windows-workflow-filters
8383
- equal: [ develop, << pipeline.git.branch >> ]
8484
# use the following branch as well to ensure that v8 snapshot cache updates are fully tested
8585
- equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
86-
- equal: [ 'feat/add_built_ins_minimal', << pipeline.git.branch >> ]
86+
- equal: [ 'chore/test_cypress_recipes_15', << pipeline.git.branch >> ]
8787
- matches:
8888
pattern: /^release\/\d+\.\d+\.\d+$/
8989
value: << pipeline.git.branch >>
@@ -157,7 +157,7 @@ commands:
157157
name: Set environment variable to determine whether or not to persist artifacts
158158
command: |
159159
echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
160-
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "feat/add_built_ins_minimal" ]]; then
160+
echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/test_cypress_recipes_15" ]]; then
161161
export SHOULD_PERSIST_ARTIFACTS=true
162162
fi' >> "$BASH_ENV"
163163
# You must run `setup_should_persist_artifacts` command and be using bash before running this command
@@ -2708,6 +2708,7 @@ jobs:
27082708
steps:
27092709
- test-binary-against-repo:
27102710
repo: cypress-example-recipes
2711+
pull_request_id: 921
27112712
command: npm run test:ci:firefox
27122713
browser: firefox
27132714

@@ -2716,6 +2717,7 @@ jobs:
27162717
steps:
27172718
- test-binary-against-repo:
27182719
repo: cypress-example-recipes
2720+
pull_request_id: 921
27192721
command: npm run test:ci:chrome
27202722
browser: chrome
27212723

@@ -2725,6 +2727,7 @@ jobs:
27252727
steps:
27262728
- test-binary-against-repo:
27272729
repo: cypress-example-recipes
2730+
pull_request_id: 921
27282731
# Split the specs up across 4 different machines to run in parallel
27292732
command: npm run test:ci -- --chunk $CIRCLE_NODE_INDEX --total-chunks
27302733
$CIRCLE_NODE_TOTAL

0 commit comments

Comments
 (0)