From b42189922131c569539e9d2696d6a5e6760c1dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 27 Nov 2024 21:58:51 +0100 Subject: [PATCH] Remove deprecated macos-12 and add macos-15 --- .github/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index adeceaba..4b5b48b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -360,18 +360,15 @@ jobs: #------------------ # MacOS, clang #------------------ - # Macos 12, clang - toolset: clang - cxxstd: "11,14,17,20,2b" - os: macos-12 - # Macos 13, clang - - toolset: clang - cxxstd: "11,14,17,20,2b" + cxxstd: "03,11,14,17,20,2b" os: macos-13 - # Macos 17, clang - toolset: clang - cxxstd: "11,14,17,20,2b" + cxxstd: "03,11,14,17,20,2b" os: macos-14 + - toolset: clang + cxxstd: "03,11,14,17,20,2b" + os: macos-15 timeout-minutes: 180 runs-on: ${{matrix.os}}