summaryrefslogtreecommitdiff
path: root/build-test.sh
diff options
context:
space:
mode:
authorAndon Andonov <anandono@microsoft.com>2018-07-09 10:45:24 -0700
committerGitHub <noreply@github.com>2018-07-09 10:45:24 -0700
commit7baedfdafb6979f48026ed7e01de4b6cc14b3bba (patch)
tree3f27c6abf39acb2629ef4d93b5e76f3210a95d8e /build-test.sh
parent4349690ec1c81a28c14ba2801240c94f3f79dec4 (diff)
downloadcoreclr-7baedfdafb6979f48026ed7e01de4b6cc14b3bba.tar.gz
coreclr-7baedfdafb6979f48026ed7e01de4b6cc14b3bba.tar.bz2
coreclr-7baedfdafb6979f48026ed7e01de4b6cc14b3bba.zip
CoreFX CI Unix Staging commit (#18750)
* Modify netci.groovy * Add script exit codes * Ad PR Triggers for Ubuntu and OSX10.12 * Remove release PR triggers * Rename arch Remove IsJitStressTestScenario assert * Add correct asserts * Reformat conditions and add triggers for Release/Checked/Debug * Change %WORKSPACE% to \${WORKSPACE}
Diffstat (limited to 'build-test.sh')
-rwxr-xr-xbuild-test.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/build-test.sh b/build-test.sh
index 5339dc1116..b5badd09ab 100755
--- a/build-test.sh
+++ b/build-test.sh
@@ -384,6 +384,7 @@ usage()
echo "verbose - optional argument to enable verbose build output."
echo "rebuild - if tests have already been built - rebuild them"
echo "generatelayoutonly - only pull down dependencies and build coreroot"
+ echo "generatetesthostonly - only pull down dependencies and build coreroot and the CoreFX testhost"
echo "buildagainstpackages - pull down and build using packages."
echo "runtests - run tests after building them"
echo "ziptests - zips CoreCLR tests & Core_Root for a Helix run"
@@ -641,6 +642,10 @@ while :; do
__GenerateLayoutOnly=1
;;
+ generatetesthostonly)
+ exit 0
+ ;;
+
buildagainstpackages)
__BuildAgainstPackagesArg=1
;;