From 331c26760ec27ed39758c0f5c9a4e33b3b15aea3 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sat, 24 Apr 2021 14:20:46 +0300 Subject: [PATCH] Use clang-7 in CI instead of clang-3.8; do not sanitize with GCC-10 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c42a44e..7d0a218 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,15 +30,15 @@ jobs: - toolset: gcc-10 cxxstd: "03,11,14,17,2a" os: ubuntu-18.04 - 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.5" + cxxflags: "cxxflags=--coverage" + linkflags: "linkflags=--coverage" + #launcher: "testing.launcher=LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.5" gcov_tool: "gcov-10" - toolset: clang - compiler: clang++-3.8 - cxxstd: "03,11,14" + compiler: clang++-7 + cxxstd: "03,11,14,1z" os: ubuntu-16.04 - install: clang-3.8 + install: clang-7 - toolset: clang compiler: clang++-9 cxxstd: "03,11,14,17,2a"