From a395782b86b8abb435d91fcab217384ca01d64c9 Mon Sep 17 00:00:00 2001 From: Andreas Wachowski Date: Sun, 2 Feb 2025 17:34:07 +0100 Subject: [PATCH] ci: use macos-15 to have Clang/LLVM 18 https://github.com/actions/runner-images/issues/10686 https://github.com/actions/runner-images/issues/11486 --- .github/workflows/cmake-multi-platform.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index bae94cd..17d411c 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -23,7 +23,7 @@ jobs: # # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-15] build_type: [Release] c_compiler: [gcc, clang] include: @@ -33,11 +33,11 @@ jobs: - os: ubuntu-latest c_compiler: clang cpp_compiler: clang++ - - os: macos-latest + - os: macos-15 c_compiler: clang cpp_compiler: clang++ exclude: - - os: macos-latest + - os: macos-15 c_compiler: gcc steps: