diff --git a/.circleci/src/pipeline/@pipeline.yml b/.circleci/src/pipeline/@pipeline.yml index 06ed4596341..2e202b510a0 100644 --- a/.circleci/src/pipeline/@pipeline.yml +++ b/.circleci/src/pipeline/@pipeline.yml @@ -9,12 +9,10 @@ chrome-stable-version: &chrome-stable-version "141.0.7390.107" chrome-beta-version: &chrome-beta-version "142.0.7444.34" firefox-stable-version: &firefox-stable-version "142.0" base-internal-trixie: &base-internal-trixie cypress/base-internal:22.19.0-trixie -base-internal-yarn-berry: &base-internal-yarn-berry cypress/base-internal:22.19.0-yarn-berry-trixie +base-internal-yarn-berry: &base-internal-yarn-berry cypress/base-internal:22.19.0-yarn-berry # Lowest Node.js version we support of the minimum major version supported # See https://docs.cypress.io/app/get-started/install-cypress#Nodejs base-internal-minimum-node: &base-internal-minimum-node cypress/base-internal:20.15.0 -ubuntu-2004-current: &ubuntu-2004-current ubuntu-2004:2024.11.1 -ubuntu-2004-older: &ubuntu-2004-older ubuntu-2004:2024.05.1 orbs: browser-tools: circleci/browser-tools@2.3.1 @@ -118,7 +116,7 @@ commands: name: Set environment variable to determine whether or not to persist artifacts command: | echo "Setting SHOULD_PERSIST_ARTIFACTS variable" - echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/fix_builds" ]]; then + echo 'if ! [[ "$CIRCLE_BRANCH" != "develop" && "$CIRCLE_BRANCH" != "release/"* && "$CIRCLE_BRANCH" != "chore/remove_unused_anchors" ]]; then export SHOULD_PERSIST_ARTIFACTS=true fi' >> "$BASH_ENV" # You must run `setup_should_persist_artifacts` command and be using bash before running this command diff --git a/.circleci/src/pipeline/workflows/@main.yml b/.circleci/src/pipeline/workflows/@main.yml index 0cafc25ffb2..5418026c925 100644 --- a/.circleci/src/pipeline/workflows/@main.yml +++ b/.circleci/src/pipeline/workflows/@main.yml @@ -4,7 +4,7 @@ linux-x64: - equal: [ develop, << pipeline.git.branch >> ] # use the following branch as well to ensure that v8 snapshot cache updates are fully tested - equal: [ 'update-v8-snapshot-cache-on-develop', << pipeline.git.branch >> ] - - equal: [ 'ryanm/fix/issue-with-sourcemaps', << pipeline.git.branch >> ] + - equal: [ 'chore/remove_unused_anchors', << pipeline.git.branch >> ] - matches: pattern: /^release\/\d+\.\d+\.\d+$/ value: << pipeline.git.branch >> diff --git a/scripts/binary/get-published-artifacts.js b/scripts/binary/get-published-artifacts.js index 94ab1c82239..a88dc9900fd 100644 --- a/scripts/binary/get-published-artifacts.js +++ b/scripts/binary/get-published-artifacts.js @@ -12,6 +12,10 @@ const getArtifactJobName = (platformKey) => { return 'linux-amd-publish-binary' } + if (platformKey === 'linux-arm64') { + return 'linux-arm64-publish-binary' + } + return 'publish-binary' }