summaryrefslogtreecommitdiff
path: root/build-packages.sh
diff options
context:
space:
mode:
authorRahul Kumar <rahku@microsoft.com>2016-07-27 15:50:56 -0700
committerRahul Kumar <rahku@microsoft.com>2016-07-29 15:10:34 -0700
commit5b7d8d9227841faada56ef1005242ce9278cd697 (patch)
treeb6bc632dc65dfda3dccb7a87df23cc5ad95a8037 /build-packages.sh
parentb61adb5a2f93d5350b3c898b06c7895e0516c066 (diff)
downloadcoreclr-5b7d8d9227841faada56ef1005242ce9278cd697.tar.gz
coreclr-5b7d8d9227841faada56ef1005242ce9278cd697.tar.bz2
coreclr-5b7d8d9227841faada56ef1005242ce9278cd697.zip
adds testhost package
Diffstat (limited to 'build-packages.sh')
-rwxr-xr-xbuild-packages.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/build-packages.sh b/build-packages.sh
index 238958eefd..be75891850 100755
--- a/build-packages.sh
+++ b/build-packages.sh
@@ -156,6 +156,15 @@ if [ $? -ne 0 ]; then
exit 1
fi
+ # Build the TestHost package
+ $__ProjectRoot/Tools/dotnetcli/dotnet "$__MSBuildPath" /nologo "$__ProjectRoot/src/.nuget/Microsoft.NETCore.TestHost/Microsoft.NETCore.TestHost.builds" /verbosity:minimal "/fileloggerparameters:Verbosity=normal;LogFile=$binclashlog" /t:Build /p:__BuildOS=$__BuildOS /p:__BuildArch=$__BuildArch /p:__BuildType=$__BuildType /p:__IntermediatesDir=$__IntermediatesDir /p:BuildNugetPackage=false /p:UseSharedCompilation=false
+
+if [ $? -ne 0 ]; then
+ echo -e "\nAn error occurred. Aborting build-packages.sh ." >> $build_packages_log
+ echo "ERROR: An error occurred while building packages, see $build_packages_log for more details."
+ exit 1
+fi
+
echo "Done building packages."
echo -e "\nDone building packages." >> $build_packages_log
exit 0