From dcfe9dfd517d7d54eb6bfac92202d6c0f35ac47d Mon Sep 17 00:00:00 2001 From: alandefreitas Date: Mon, 19 Aug 2024 16:53:46 -0300 Subject: [PATCH] ci: delegate GCC-Asan to GHA --- .drone.star | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index 9fe2392a6..345131666 100644 --- a/.drone.star +++ b/.drone.star @@ -27,7 +27,10 @@ def main(ctx): 'x86-msvc latest' ], # Standards - '>=11', cache_dir='cache') + [ + '>=11', + # Asan is delegated to GHA + asan=False, + cache_dir='cache') + [ linux_cxx("GCC 12 (no-mutex)", "g++-12", packages="g++-12", buildscript="drone", buildtype="boost", image="cppalliance/droneubuntu2204:1", environment={'B2_TOOLSET': 'gcc-12', 'B2_DEFINES': 'BOOST_URL_DISABLE_THREADS=1',