From 538625e57c0e12600c1ef656473fca5be92b7af8 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 5 May 2026 14:02:38 +0200 Subject: [PATCH] Enable adding Ubuntu toolchain PPA by default The default in Boost.CI will be false but some jobs still rely on this, so keep it for now the default. --- .drone.star | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.star b/.drone.star index d03de76ac..f6c2137db 100644 --- a/.drone.star +++ b/.drone.star @@ -7,7 +7,7 @@ def main(ctx): - globalenv={'B2_CI_VERSION': '1', 'B2_FLAGS': 'warnings=extra warnings-as-errors=on', 'DEPINST': '--reject-cycles'} + globalenv={'B2_CI_VERSION': '1', 'ADD_UBUNTU_TOOLCHAIN_PPA': 'true', 'B2_FLAGS': 'warnings=extra warnings-as-errors=on', 'DEPINST': '--reject-cycles'} with_stdxxfs = { 'B2_LINKFLAGS': '-lstdc++fs', } cmake_env = { 'CMAKE_VERSION': '3.8.2'} @@ -121,7 +121,7 @@ def generate( oses=["linux", "windows", "macos", 'freebsd'], architectures=["x86_64", "arm64", "s390x"], script='drone', - globalenv={}, + globalenv={'ADD_UBUNTU_TOOLCHAIN_PPA': 'true'}, overrides=[], extras=[], ):