Skip to content

Commit af6f986

Browse files
committed
[build-script] Add --parallel to supress output on success
It's slightly faster and it helps supress the test output when tests succeed (which avoids false positives in Jenkins' error regexes, for example the error from "let pack" in a test).
1 parent 733e79b commit af6f986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/build-script-helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def add_common_args(parser):
133133
tests = os.path.join(bin_path, 'sk-tests')
134134
print('Cleaning ' + tests)
135135
shutil.rmtree(tests, ignore_errors=True)
136-
swiftpm('test', swift_exec, swiftpm_args, env)
136+
swiftpm('test', swift_exec, swiftpm_args + ['--parallel'], env)
137137
elif args.action == 'install':
138138
bin_path = swiftpm_bin_path(swift_exec, swiftpm_args, env)
139139
swiftpm('build', swift_exec, swiftpm_args, env)

0 commit comments

Comments
 (0)