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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarthik Rajasekaran <karajas@microsoft.com>2016-11-16 03:38:35 +0300
committerKarthik Rajasekaran <karajas@microsoft.com>2016-12-12 22:05:41 +0300
commit339e305946213daea2402242eedd0096c41011a5 (patch)
treef8c906e1ed9f3a734e1692b69449504c68babc29 /build.sh
parent382601e92eaac7fd997409a64298009b4e304d89 (diff)
Build order is now native, managed and tests.
Tests build is a separate phase with a separate sync invocation. Restore dependencies that come from source projects that tests projects still depend on. Fix up sni versions and don't create partial packages for sni packages. Add FilterToOsGroup to override Run tool behaviour Fix System.Reflection.Metadata test build Fix path issue that prevents SupplementalTestData from being discovered.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index d8a0d6c18b..a953753ece 100755
--- a/build.sh
+++ b/build.sh
@@ -29,5 +29,10 @@ if [ $? -ne 0 ];then
fi
"$__scriptpath/build-managed.sh" $*
+if [ $? -ne 0 ];then
+ exit 1
+fi
+
+"$__scriptpath/build-tests.sh" $*
exit $?