From 3e1c624e24a0366eecc909854dc9fb0103e5c845 Mon Sep 17 00:00:00 2001 From: Neil Henning Date: Fri, 19 Jul 2024 14:42:29 +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 17f8a55..2c07b3f 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"}