From 476580a9c54c5cdab8b6f8403467aeee92f58ac3 Mon Sep 17 00:00:00 2001 From: Lars Kanis Date: Sun, 13 Sep 2026 10:56:13 +0200 Subject: [PATCH] Remove install of base ruby since ruby and msys64 are preinstalled now https://github.com/actions/runner-images/pull/14437 --- .github/workflows/ci.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7090d168..e96865c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - target_ruby: "4.0.6" arch: "arm-ucrt" - build_ruby: "3.4.9/x64" + build_ruby: "3.4.10/aarch64" run_mri_spec: v4.0.6 runon: windows-11-arm @@ -41,7 +41,7 @@ jobs: - target_ruby: "3.4.10" arch: "arm-ucrt" - build_ruby: "3.4.9/x64" + build_ruby: "3.4.10/aarch64" run_mri_spec: v3_4_10 runon: windows-11-arm @@ -77,7 +77,7 @@ jobs: - target_ruby: "head" arch: "arm-ucrt" - build_ruby: "3.4.9/x64" + build_ruby: "3.4.10/aarch64" run_mri_spec: master runon: windows-11-arm @@ -101,15 +101,6 @@ jobs: - name: fetch tag annotations run: git fetch --force --tags - - name: Install base ruby - if: matrix.arch == 'arm-ucrt' - shell: powershell - run: | - $(new-object net.webclient).DownloadFile("https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.4.7-1/rubyinstaller-devkit-3.4.7-1-x64.exe", "$pwd/ruby-setup.exe") - cmd /c ruby-setup.exe /verysilent /currentuser /dir=C:/hostedtoolcache/windows/Ruby/${{ matrix.build_ruby }} - New-Item -Path c:/msys64 -ItemType Junction -Value C:/hostedtoolcache/windows/Ruby/${{ matrix.build_ruby }}/msys64 - ridk install 1 3 - - run: | dir C:/hostedtoolcache/windows/Ruby/ ruby --version