From 78e8c2ecd032d5b33e446ff215fc283f0df95545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 27 Nov 2024 21:59:42 +0100 Subject: [PATCH] Remove deprecated macos-12 and add macos-15 --- .github/workflows/ci.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fc0eabf..9843aafe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -395,21 +395,15 @@ jobs: #------------------ # MacOS, clang #------------------ - # Macos 12, clang - toolset: clang - cxxstd: "11,14,17,20,2b" - cxxflags: -pipe - os: macos-12 - # Macos 13, clang - - toolset: clang - cxxstd: "11,14,17,20,2b" - cxxflags: -pipe + cxxstd: "03,11,14,17,20,2b" os: macos-13 - # Macos 17, clang - toolset: clang - cxxstd: "11,14,17,20,2b" - cxxflags: -pipe + 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}}