From e3d04834a504657f7672fefb4b6f515b17e8777e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 23 Dec 2024 22:42:05 +0100 Subject: [PATCH] Avoid C++03 testing in clang/libc++ --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b5b48b..bf5da27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -361,13 +361,13 @@ jobs: # MacOS, clang #------------------ - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-13 - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-14 - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-15 timeout-minutes: 180