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.
2 parents 3f28e28 + 157cb2a commit 3971c0aCopy full SHA for 3971c0a
utils/build-script
@@ -552,6 +552,8 @@ class BuildScriptInvocation(object):
552
impl_args += ["--long-test"]
553
if args.stress_test:
554
impl_args += ["--stress-test"]
555
+ if args.skip_local_build:
556
+ impl_args += ["--skip-local-build"]
557
if args.only_executable_test:
558
impl_args += ["--only-executable-test"]
559
if not args.benchmark:
validation-test/BuildSystem/skip-local-build.test-sh
@@ -0,0 +1,6 @@
1
+# RUN: %swift_src_root/utils/build-script --dump-config --skip-local-build 2>&1 | %FileCheck %s -check-prefix=CONFIG
2
+# CONFIG: "skip_local_build": true
3
+
4
+# RUN: %swift_src_root/utils/build-script --dry-run --verbose-build --skip-local-build 2>&1 | %FileCheck %s -check-prefix=DRY
5
+# DRY: build-script-impl
6
+# DRY-SAME: --skip-local-build
0 commit comments