Skip to content

Commit 3971c0a

Browse files
authored
Merge pull request #27890 from vedantk/master
2 parents 3f28e28 + 157cb2a commit 3971c0a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

utils/build-script

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,8 @@ class BuildScriptInvocation(object):
552552
impl_args += ["--long-test"]
553553
if args.stress_test:
554554
impl_args += ["--stress-test"]
555+
if args.skip_local_build:
556+
impl_args += ["--skip-local-build"]
555557
if args.only_executable_test:
556558
impl_args += ["--only-executable-test"]
557559
if not args.benchmark:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)