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 82790fa commit fa40f7aCopy full SHA for fa40f7a
utils/build-toolchain
@@ -28,6 +28,9 @@ function usage() {
28
echo "Run tests."
29
echo ""
30
fi
31
+ echo "-nt --no-test"
32
+ echo "Don't run tests."
33
+ echo ""
34
}
35
36
cd "$(dirname $0)/.." || exit
@@ -63,6 +66,13 @@ while [ $# -ne 0 ]; do
63
66
echo "--test is not supported on \"$(uname -s)\". See --help"
64
67
exit 1
65
68
69
+ ;;
70
+ -nt|--no-test)
71
+ if [ "$(uname -s)" == "Linux" ]; then
72
+ SWIFT_PACKAGE=buildbot_linux,no_test
73
+ else
74
+ SWIFT_PACKAGE=buildbot_osx_package,no_test
75
+ fi
76
;;
77
-h|--help)
78
usage
0 commit comments