From d2e35eb8366dae73ed12653b8fef8ec2a26ddc8f Mon Sep 17 00:00:00 2001 From: Neil Henning Date: Wed, 17 Jul 2024 22:21:28 +0100 Subject: [PATCH] Update the workflow with the new min macOS image. --- .github/workflows/cmake.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e9c6fdd..62d1d68 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -10,16 +10,16 @@ jobs: build: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-11, macos-14] + os: [ubuntu-latest, windows-latest, macos-13, macos-latest] type: [Debug, RelWithDebInfo, MinSizeRel, Release] compiler: [default, clang, gcc, tcc] exclude: - - {os: "macos-11", compiler: "clang"} - - {os: "macos-11", compiler: "gcc"} - - {os: "macos-11", compiler: "tcc"} - - {os: "macos-14", compiler: "clang"} - - {os: "macos-14", compiler: "gcc"} - - {os: "macos-14", compiler: "tcc"} + - {os: "macos-13", compiler: "clang"} + - {os: "macos-13", compiler: "gcc"} + - {os: "macos-13", compiler: "tcc"} + - {os: "macos-latest", compiler: "clang"} + - {os: "macos-latest", compiler: "gcc"} + - {os: "macos-latest", compiler: "tcc"} - {os: "ubuntu-latest", compiler: "default"} - {os: "ubuntu-latest", compiler: "default"} - {os: "windows-latest", compiler: "gcc"}