Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tests/scripts/task_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@

if use_sccache:
if args.sccache_bucket:
env["SCCACHE_BUCKET"] = args.sccache_bucket
logging.info(f"Using sccache bucket: {args.sccache_bucket}")
env["SCCACHE_BUCKET"] = "invalid_sccache_bucket"
logging.info(f"sccache bucket in args: {args.sccache_bucket}")
logging.info(f"Using sccache bucket: {env['SCCACHE_BUCKET']}")
else:
logging.info(f"No sccache bucket set, using local cache")
env["CXX"] = "/opt/sccache/c++"
Expand Down