diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-07-17 09:15:17 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2025-07-17 09:15:17 +0200 |
| commit | b7d27822e3e295c34aacf389962ebe872697b9f7 (patch) | |
| tree | ed17fdf3952fc0f167ad5a57aa7ef748c9b308f9 | |
| parent | 014bd8290f084c714995205a9116e6c035419ae6 (diff) | |
| download | rust-b7d27822e3e295c34aacf389962ebe872697b9f7.tar.gz rust-b7d27822e3e295c34aacf389962ebe872697b9f7.zip | |
Remove install Rust script from CI
Windows ARM images should contain Rust now.
| -rw-r--r-- | .github/workflows/ci.yml | 3 | ||||
| -rwxr-xr-x | src/ci/scripts/install-rust.sh | 15 |
2 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc8ac539a3a..9d027873928 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,9 +152,6 @@ jobs: - name: show the current environment run: src/ci/scripts/dump-environment.sh - - name: install rust - run: src/ci/scripts/install-rust.sh - - name: install awscli run: src/ci/scripts/install-awscli.sh 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 |
