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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2019-06-13 13:03:42 +0300
committerMarek Safar <marek.safar@gmail.com>2019-06-14 12:03:35 +0300
commit9010d2f290d28dc97ac276e0c0d32a2932b7550f (patch)
treec59b3bef1b87c974c28c38ce4dab7bc103f643bc /netcore/build.sh
parent12b737d980f0a8bc6f275bd8eabb0eb1011f6f90 (diff)
[netcore] Clean up netcore build
Diffstat (limited to 'netcore/build.sh')
-rwxr-xr-xnetcore/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/netcore/build.sh b/netcore/build.sh
index ec27805525e..29071f81d63 100755
--- a/netcore/build.sh
+++ b/netcore/build.sh
@@ -88,7 +88,7 @@ done
if [[ "$force_rebuild" == "true" || ! -f .configured ]]; then
cd ..
./autogen.sh --with-core=only
- cd netcore
+ make -j$CPU_COUNT
touch .configured
fi
@@ -112,6 +112,6 @@ fi
# run all xunit tests
if [ "$test" = "true" ]; then
for testdir in corefx/tests/extracted/*; do
- ../scripts/ci/./run-step.sh --label=$(basename $testdir) --timeout=15m make xtest-$(basename $testdir)
+ ../scripts/ci/./run-step.sh --label=$(basename $testdir) --timeout=15m make run-tests-corefx-$(basename $testdir)
done
fi \ No newline at end of file