about summary refs log tree commit diff
path: root/src/ci/scripts
diff options
context:
space:
mode:
authorTshepang Mbambo <hopsi@tuta.io>2025-08-04 15:20:57 +0200
committerGitHub <noreply@github.com>2025-08-04 15:20:57 +0200
commita13caaae3e87d9084a16f023e91880dd2ef0bc09 (patch)
treead7f71f36fed97f65204d8a1f8c594c8ac1d2df8 /src/ci/scripts
parent788845811e076df8edceccd49e174d2b3ec4e71d (diff)
parent682a6e17e4dcc02944b00834f11e7cdd7067ebd1 (diff)
downloadrust-a13caaae3e87d9084a16f023e91880dd2ef0bc09.tar.gz
rust-a13caaae3e87d9084a16f023e91880dd2ef0bc09.zip
Merge pull request #2533 from rust-lang/rustc-pull
Rustc pull update
Diffstat (limited to 'src/ci/scripts')
-rwxr-xr-xsrc/ci/scripts/install-rust.sh15
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