diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0203838e5c..baf2364e31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -551,7 +551,7 @@ jobs: plat: - "aarch64-linux" - "arm-linux" - - "arm64-darwin" # github actions does not support this runtime as of 2022-12, but let's build anyway + - "arm64-darwin" - "x64-mingw-ucrt" - "x64-mingw32" - "x86-linux" @@ -688,7 +688,7 @@ jobs: fail-fast: false matrix: ruby: ["3.0", "3.1", "3.2", "3.3"] - runs-on: macos-latest + runs-on: macos-13 steps: - uses: actions/checkout@v4 with: @@ -702,6 +702,26 @@ jobs: path: gems - run: ./scripts/test-gem-install gems + cruby-arm64-darwin-install: + needs: ["cruby-package"] + strategy: + fail-fast: false + matrix: + ruby: ["3.0", "3.1", "3.2", "3.3"] + runs-on: macos-14 + steps: + - uses: actions/checkout@v4 + with: + submodules: true + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "${{matrix.ruby}}" + - uses: actions/download-artifact@v4 + with: + name: cruby-arm64-darwin-gem + path: gems + - run: ./scripts/test-gem-install gems + cruby-x64-mingw32-install: needs: ["cruby-package"] strategy: