From ede880e6f4794e9bafe0041d5b06cbbd2de92826 Mon Sep 17 00:00:00 2001 From: Yorick Downe Date: Thu, 31 Jul 2025 15:57:39 +0100 Subject: [PATCH] Remove Win11-ARM Rust workaround --- .github/workflows/build.yml | 14 -------------- .github/workflows/runner.yml | 14 -------------- 2 files changed, 28 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 277e38dd8..967f8efb3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,20 +30,6 @@ jobs: with: python-version: ${{ matrix.python-version }} cache: 'pip' - - name: Install rustup (Windows 11 ARM64) - if: matrix.os == 'windows-11-arm' - shell: pwsh - run: | - Invoke-WebRequest -Uri "https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe" -OutFile rustup-init.exe - .\rustup-init.exe --default-toolchain none -y - "$env:USERPROFILE\.cargo\bin" | Out-File -Append -Encoding ascii $env:GITHUB_PATH - "CARGO_HOME=$env:USERPROFILE\.cargo" | Out-File -Append -Encoding ascii $env:GITHUB_ENV - - name: Install Rust (Windows 11 ARM64) - if: matrix.os == 'windows-11-arm' - shell: pwsh - run: | - rustup install stable - rustup target add aarch64-pc-windows-msvc - name: Set up variables (Linux & macOS) if: ${{ startsWith(matrix.os, 'ubuntu-') || startsWith(matrix.os, 'macos-') }} env: diff --git a/.github/workflows/runner.yml b/.github/workflows/runner.yml index 5b397b1f7..bfd149dbf 100644 --- a/.github/workflows/runner.yml +++ b/.github/workflows/runner.yml @@ -62,20 +62,6 @@ jobs: with: python-version: ${{ matrix.python-version }} cache: 'pip' - - name: Install rustup (Windows 11 ARM64) - if: matrix.os == 'windows-11-arm' - shell: pwsh - run: | - Invoke-WebRequest -Uri "https://static.rust-lang.org/rustup/dist/aarch64-pc-windows-msvc/rustup-init.exe" -OutFile rustup-init.exe - .\rustup-init.exe --default-toolchain none -y - "$env:USERPROFILE\.cargo\bin" | Out-File -Append -Encoding ascii $env:GITHUB_PATH - "CARGO_HOME=$env:USERPROFILE\.cargo" | Out-File -Append -Encoding ascii $env:GITHUB_ENV - - name: Install Rust (Windows 11 ARM64) - if: matrix.os == 'windows-11-arm' - shell: pwsh - run: | - rustup install stable - rustup target add aarch64-pc-windows-msvc - name: Install dependencies run: | python -m pip install --upgrade pip