From ee1999148224bf401dfcff985effeca9f83424ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 23 Dec 2024 22:41:51 +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 9843aaf..53dd630 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -396,13 +396,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