From 7ccabf18f26879eaaf89d8b5c0497078bf229083 Mon Sep 17 00:00:00 2001 From: Mike Schuchardt Date: Fri, 8 Dec 2023 09:53:29 -0800 Subject: [PATCH] ci: Remove macos-11 builds CMake 3.28 is having issues with the macos-11 runner. --- .github/workflows/build.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34bdf77a6..5b53f7811 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -322,19 +322,12 @@ jobs: run: ctest --output-on-failure -C ${{matrix.config}} mac: - runs-on: ${{matrix.os}} + runs-on: macos-12 strategy: matrix: config: [ Debug, Release ] - os: [ macos-11, macos-12 ] static_build: [ APPLE_STATIC_LOADER=ON, APPLE_STATIC_LOADER=OFF ] - exclude: - - os: macos-latest - static_build: APPLE_STATIC_LOADER=ON - - config: Debug - os: macos-11 - static_build: APPLE_STATIC_LOADER=ON steps: - uses: actions/checkout@v4 @@ -357,7 +350,7 @@ jobs: apple-cross-compile: name: ${{ matrix.CMAKE_SYSTEM_NAME }} - runs-on: macos-11 + runs-on: macos-12 strategy: matrix: CMAKE_SYSTEM_NAME: [ iOS, tvOS ]