From 26cbfa671be22e9f2bf033bb8ba8c1dd7f428580 Mon Sep 17 00:00:00 2001 From: Bogdan Burlacu Date: Sat, 1 Jun 2024 23:24:12 +0200 Subject: [PATCH] CI: build only on macos-14 --- .github/workflows/build-macos.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index a85fbfe..a23cc2c 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -12,13 +12,10 @@ env: jobs: build: - strategy: - matrix: - os: [ macos-11, macos-12, macos-13, macos-14 ] # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. # You can convert this to a matrix build if you need cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ${{ matrix.os }} + runs-on: macos-14 if: github.ref_name == 'main' steps: - uses: actions/checkout@v4