Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSenthil Chellappan <schellap@microsoft.com>2015-12-03 21:50:14 +0300
committerSenthil <schellap@microsoft.com>2015-12-10 01:46:53 +0300
commite03ac1074522e8b6858723d023687d03882be3ff (patch)
tree4c5d81e5fff7b57cbc5520cd41c8cecc97b2c83e /build.sh
parent47e02756fd100b26a833bea16710046bbe7e6ab6 (diff)
Splitting packages to toolchain and runtime
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 6b9af2ed8..0119b7ad3 100755
--- a/build.sh
+++ b/build.sh
@@ -160,8 +160,11 @@ build_managed_corert()
__buildproj=$__scriptpath/build.proj
__buildlog=$__scriptpath/msbuild.$__BuildArch.log
- # TODO: Renable running tests
- MONO29679=1 ReferenceAssemblyRoot=$__referenceassemblyroot mono $__msbuildpath "$__buildproj" /nologo /verbosity:minimal "/fileloggerparameters:Verbosity=normal;LogFile=$__buildlog" /t:Build /p:CleanedTheBuild=$__CleanBuild /p:SkipTests=true /p:TestNugetRuntimeId=$__TestNugetRuntimeId /p:ToolNugetRuntimeId=$__ToolNugetRuntimeId /p:OSEnvironment=Unix /p:OSGroup=$__BuildOS /p:Configuration=$__BuildType /p:Platform=$__BuildArch /p:UseRoslynCompiler=true /p:COMPUTERNAME=$(hostname) /p:USERNAME=$(id -un) "$@"
+ if [ -n ${ToolchainMilestone:+1} ]; then
+ ToolchainMilestone=testing
+ fi
+
+ MONO29679=1 ReferenceAssemblyRoot=$__referenceassemblyroot mono $__msbuildpath "$__buildproj" /nologo /verbosity:minimal "/fileloggerparameters:Verbosity=normal;LogFile=$__buildlog" /t:Build /p:CleanedTheBuild=$__CleanBuild /p:SkipTests=true /p:TestNugetRuntimeId=$__TestNugetRuntimeId /p:ToolNugetRuntimeId=$__ToolNugetRuntimeId /p:OSEnvironment=Unix /p:OSGroup=$__BuildOS /p:Configuration=$__BuildType /p:Platform=$__BuildArch /p:UseRoslynCompiler=true /p:COMPUTERNAME=$(hostname) /p:USERNAME=$(id -un) /p:ToolchainMilestone=${ToolchainMilestone} "$@"
BUILDERRORLEVEL=$?
echo