From a2ef72c907a5be23630083b4a008e5dd3907f49e Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sat, 24 Apr 2021 14:28:28 +0300 Subject: [PATCH] CI updates: proper setup of clang-7 and restore sanitizers for gcc-10 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d0a218..9b9735c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,14 +30,14 @@ jobs: - toolset: gcc-10 cxxstd: "03,11,14,17,2a" os: ubuntu-18.04 - cxxflags: "cxxflags=--coverage" - linkflags: "linkflags=--coverage" - #launcher: "testing.launcher=LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.5" + cxxflags: "cxxflags=--coverage -fsanitize=address,leak,undefined -fno-sanitize-recover=undefined" + linkflags: "linkflags=--coverage -lasan -lubsan" + launcher: "testing.launcher=LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.6" gcov_tool: "gcov-10" - toolset: clang compiler: clang++-7 - cxxstd: "03,11,14,1z" - os: ubuntu-16.04 + cxxstd: "03,11,14,17" + os: ubuntu-18.04 install: clang-7 - toolset: clang compiler: clang++-9