We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f25768 commit 482229cCopy full SHA for 482229c
tests/scripts/task_build.py
@@ -49,9 +49,12 @@
49
if use_sccache:
50
if args.sccache_bucket:
51
env["SCCACHE_BUCKET"] = args.sccache_bucket
52
- env["SCCACHE_REGION"] = args.sccache_region
+ env["SCCACHE_REGION"] = "us-west-2"
53
+ if args.sccache_region:
54
+ env["SCCACHE_REGION"] = args.sccache_region
55
+
56
logging.info(f"Using sccache bucket: {args.sccache_bucket}")
- logging.info(f"Using sccache region: {args.sccache_region}")
57
+ logging.info(f"Using sccache region: {env['SCCACHE_REGION']}")
58
else:
59
logging.info(f"No sccache bucket set, using local cache")
60
env["CXX"] = "/opt/sccache/c++"
0 commit comments