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 196fe68 + 3550787 commit b8c581bCopy full SHA for b8c581b
utils/build-toolchain
@@ -14,7 +14,7 @@ cd "$(dirname $0)/.." || exit
14
SRC_DIR=$PWD
15
16
DRY_RUN=
17
-if [[ "$1" == "-n" || "$1" == "--dry-run" ]] ; then
+if [[ "$2" == "-n" || "$2" == "--dry-run" ]] ; then
18
DRY_RUN="-n"
19
shift
20
fi
@@ -40,7 +40,11 @@ SYMBOLS_PACKAGE="${SRC_DIR}/${SYM_ARCHIVE}"
40
if [[ "$(uname -s)" == "Darwin" ]] ; then
41
SWIFT_PACKAGE=buildbot_osx_package
42
else
43
- SWIFT_PACKAGE=buildbot_linux
+ if [[ "$2" == "-t" || "$2" == "--test" ]] ; then
44
+ SWIFT_PACKAGE=buildbot_linux
45
+ else
46
+ SWIFT_PACKAGE=buildbot_linux,no_test
47
+ fi
48
49
50
./utils/build-script ${DRY_RUN} --preset="${SWIFT_PACKAGE}" \
0 commit comments