From 33d28a12d1cf7e2566ad06442262a049303e5645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Thu, 6 Jun 2024 12:37:46 +0200 Subject: [PATCH] Don't use C++03 in Macos regression tests --- .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 cfe21e5..dfad3b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -328,15 +328,15 @@ jobs: #------------------ # Macos 11, clang - toolset: clang - cxxstd: "03,11,14,17,2a" + cxxstd: "11,14,17,2a" os: macos-11 # Macos 12, clang - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-12 # Macos 13, clang - toolset: clang - cxxstd: "03,11,14,17,20,2b" + cxxstd: "11,14,17,20,2b" os: macos-13 timeout-minutes: 180