From ee172b86fd4de9ae7e409e1b6d7c0c4c53f6d385 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Thu, 23 Oct 2025 17:11:04 +0200 Subject: [PATCH] Try standalone only with >=C++17 --- .drone.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index 8b74829..78105c0 100644 --- a/.drone.star +++ b/.drone.star @@ -38,7 +38,7 @@ def main(ctx): job(compiler='clang-14', cxxstd='11,14,17,20,2b', os='ubuntu-22.04'), job(compiler='clang-15', cxxstd='11,14,17,20,2b', os='ubuntu-22.04', add_llvm=True, env={'B2_CXXFLAGS': '-Werror'}), - job(name='Clang 15 standalone', compiler='clang-15', cxxstd='11,14,17,20,2b', os='ubuntu-22.04', add_llvm=True, + job(name='Clang 15 standalone', compiler='clang-15', cxxstd='17,20,2b', os='ubuntu-22.04', add_llvm=True, env={'B2_CXXFLAGS': '-Werror', 'B2_DEFINES': 'BOOST_STATIC_STRING_STANDALONE'}), job(compiler='gcc-4.8', cxxstd='11', os='ubuntu-16.04'),