From 5ade1ab9e1dbed94cc74f56cfc6314be025e1940 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Wed, 31 Mar 2021 12:37:28 +0100 Subject: [PATCH] Remove sanitizers, these need to be a separate PR. --- .drone.star | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.drone.star b/.drone.star index 75853d500..5d8817377 100644 --- a/.drone.star +++ b/.drone.star @@ -32,12 +32,6 @@ def main(ctx): for cxx in gnu_10_stds: result.append(linux_cxx("Ubunti g++-10 " + cxx + " " + suite, "g++-10", packages="g++-10", buildtype="boost", image="cppalliance/droneubuntu2004:1", environment={'TOOLSET': 'gcc', 'COMPILER': 'g++-10', 'CXXSTD': cxx, 'TEST_SUITE': suite, }, globalenv=globalenv)) result.append(linux_cxx("Ubunti clang++-10 " + cxx + " " + suite, "clang++-10", packages="clang-10", llvm_os="xenial", llvm_ver="10", buildtype="boost", image="cppalliance/droneubuntu1804:1", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++-10', 'CXXSTD': cxx, 'TEST_SUITE': suite, }, globalenv=globalenv)) - # - # Sanitizers: - # - result.append(linux_cxx("Ubunti g++-10 ASAN" + cxx + " " + suite, "g++-10", packages="g++-10", privileged=True, buildtype="boost", image="cppalliance/droneubuntu2004:1", environment={'TOOLSET': 'gcc', 'COMPILER': 'g++-10', 'CXXSTD': cxx, 'TEST_SUITE': suite, 'OPTIONS': '-fsanitize=address -fsanitize=address' }, globalenv=globalenv)) - result.append(linux_cxx("Ubunti g++-10 USAN" + cxx + " " + suite, "g++-10", packages="g++-10", privileged=True, buildtype="boost", image="cppalliance/droneubuntu2004:1", environment={'TOOLSET': 'gcc', 'COMPILER': 'g++-10', 'CXXSTD': cxx, 'TEST_SUITE': suite, 'OPTIONS': '-fsanitize=undefined -fsanitize=undefined' }, globalenv=globalenv)) - result.append(linux_cxx("Ubunti g++-10 TSAN" + cxx + " " + suite, "g++-10", packages="g++-10", privileged=True, buildtype="boost", image="cppalliance/droneubuntu2004:1", environment={'TOOLSET': 'gcc', 'COMPILER': 'g++-10', 'CXXSTD': cxx, 'TEST_SUITE': suite, 'OPTIONS': '-fsanitize=thread -fsanitize=thread' }, globalenv=globalenv)) return result