From ee7a9182f8fe260009afbb0d9cabb8c228b4deca Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Thu, 10 Aug 2023 18:11:32 +0300 Subject: [PATCH] Restore c++03 run attempts --- .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 ab3d2ac..7ca7dca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,18 +18,18 @@ jobs: matrix: include: - toolset: gcc-12 - cxxstd: "11,14,17,2a" + cxxstd: "03,11,14,17,2a" os: ubuntu-22.04 cxxflags: "cxxflags=--coverage -fsanitize=address,leak,undefined -fno-sanitize-recover=undefined" linkflags: "linkflags=--coverage -lasan -lubsan" gcov_tool: "gcov-12" launcher: "testing.launcher=LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.8" - toolset: gcc-9 - cxxstd: "11,14,17,2a" + cxxstd: "03,11,14,17,2a" os: ubuntu-22.04 - toolset: clang compiler: clang++-14 - cxxstd: "11,14,17,2a" + cxxstd: "03,11,14,17,2a" os: ubuntu-22.04 # TODO: fix and uncomment #- toolset: clang