File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,10 @@ chrome-stable-version: &chrome-stable-version "141.0.7390.107"
99chrome-beta-version : &chrome-beta-version "142.0.7444.34"
1010firefox-stable-version : &firefox-stable-version "142.0"
1111base-internal-trixie : &base-internal-trixie cypress/base-internal:22.19.0-trixie
12- base-internal-yarn-berry : &base-internal-yarn-berry cypress/base-internal:22.19.0-yarn-berry-trixie
12+ base-internal-yarn-berry : &base-internal-yarn-berry cypress/base-internal:22.19.0-yarn-berry
1313# Lowest Node.js version we support of the minimum major version supported
1414# See https://docs.cypress.io/app/get-started/install-cypress#Nodejs
1515base-internal-minimum-node : &base-internal-minimum-node cypress/base-internal:20.15.0
16- ubuntu-2004-current : &ubuntu-2004-current ubuntu-2004:2024.11.1
17- ubuntu-2004-older : &ubuntu-2004-older ubuntu-2004:2024.05.1
1816
1917orbs :
2018 browser-tools : circleci/browser-tools@2.3.1
@@ -118,7 +116,7 @@ commands:
118116 name : Set environment variable to determine whether or not to persist artifacts
119117 command : |
120118 echo "Setting SHOULD_PERSIST_ARTIFACTS variable"
121- echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/fix_builds " ]]; then
119+ echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/remove_unused_anchors " ]]; then
122120 export SHOULD_PERSIST_ARTIFACTS=true
123121 fi' >> "$BASH_ENV"
124122 # You must run `setup_should_persist_artifacts` command and be using bash before running this command
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ linux-x64:
44 - equal : [ develop, << pipeline.git.branch >> ]
55 # use the following branch as well to ensure that v8 snapshot cache updates are fully tested
66 - equal : [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ]
7- - equal : [ 'ryanm/fix/issue-with-sourcemaps ', << pipeline.git.branch >> ]
7+ - equal : [ 'chore/remove_unused_anchors ', << pipeline.git.branch >> ]
88 - matches :
99 pattern : /^release\/\d+\.\d+\.\d+$/
1010 value : << pipeline.git.branch >>
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ const getArtifactJobName = (platformKey) => {
1212 return 'linux-amd-publish-binary'
1313 }
1414
15+ if ( platformKey === 'linux-arm64' ) {
16+ return 'linux-arm64-publish-binary'
17+ }
18+
1519 return 'publish-binary'
1620}
1721
You can’t perform that action at this time.
0 commit comments