diff options
| author | bors <bors@rust-lang.org> | 2025-07-31 12:04:04 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-07-31 12:04:04 +0000 |
| commit | 3fb1b53a9dbfcdf37a4b67d35cde373316829930 (patch) | |
| tree | 6d9cd701ae6cf01e27b08a9a59a2faa188840810 /src/ci/scripts | |
| parent | 64ca23b6235732fa61c0a2b957c5d7e591e7c972 (diff) | |
| parent | 97e2806caae1142585bccadd9380bb304d0605b2 (diff) | |
| download | rust-3fb1b53a9dbfcdf37a4b67d35cde373316829930.tar.gz rust-3fb1b53a9dbfcdf37a4b67d35cde373316829930.zip | |
Auto merge of #144731 - samueltardieu:rollup-36y30k2, r=samueltardieu
Rollup of 4 pull requests Successful merges: - rust-lang/rust#136840 (Fix linker-plugin-lto only doing thin lto) - rust-lang/rust#144053 (Remove install Rust script from CI) - rust-lang/rust#144297 (Make `libtest::ERROR_EXIT_CODE` const public to not redefine it in rustdoc) - rust-lang/rust#144721 (`std_detect`: Linux 6.16 support for RISC-V) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/ci/scripts')
| -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 |
