diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2025-07-31 13:12:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-31 13:12:46 +0200 |
| commit | 1d5baad62b71009cb235cc6786673747c2a5efbd (patch) | |
| tree | 226027065b3d29e637dd563dbc0a782feb90cbf5 /src | |
| parent | d8c09c10e5e86559cd49e1081482d2b700ba5ccf (diff) | |
| parent | b7d27822e3e295c34aacf389962ebe872697b9f7 (diff) | |
Rollup merge of #144053 - Kobzol:ci-remove-install-rust, r=marcoieni
Remove install Rust script from CI Windows ARM images should contain Rust now (https://github.com/actions/partner-runner-images/issues/77#issuecomment-3082613685). CC dpaoliello try-job: `*aarch64-msvc*`
Diffstat (limited to 'src')
| -rwxr-xr-x | src/ci/scripts/install-rust.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/ci/scripts/install-rust.sh b/src/ci/scripts/install-rust.sh deleted file mode 100755 index e4aee98c9fb..00000000000 --- a/src/ci/scripts/install-rust.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -# The Arm64 Windows Runner does not have Rust already installed -# https://github.com/actions/partner-runner-images/issues/77 - -set -euo pipefail -IFS=$'\n\t' - -source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" - -if [[ "${CI_JOB_NAME}" = *aarch64* ]] && isWindows; then - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \ - sh -s -- -y -q --default-host aarch64-pc-windows-msvc - ciCommandAddPath "${USERPROFILE}/.cargo/bin" -fi |
