From c6a4f637bf1dd9b1c4e2f75249a82af9d5b7e71e Mon Sep 17 00:00:00 2001 From: "Soni L." Date: Thu, 5 Dec 2024 14:02:51 -0300 Subject: CI: Use latest macOS images (#2517) macos-12 is no longer available, this changes it to macos-13 (latest available x64 macos) macos-14 is changed to macos-latest (arm64) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 99ffb6eb..933cbb86 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-12, macos-14, windows-latest] + os: [ubuntu-latest, macos-13, macos-latest, windows-latest] steps: - uses: actions/setup-python@v5 with: @@ -43,7 +43,7 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: install ninja (osx) run: brew install ninja - if: matrix.os == 'macos-12' || matrix.os == 'macos-14' + if: matrix.os == 'macos-13' || matrix.os == 'macos-latest' - name: install ninja (win) run: choco install ninja if: matrix.os == 'windows-latest' -- cgit v1.2.3