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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorGhostkeeper <Ghostkeeper@users.noreply.github.com>2020-06-19 17:14:10 +0300
committerGitHub <noreply@github.com>2020-06-19 17:14:10 +0300
commit9cce800d42e74841ab5f5292b4f5fda2500ee07b (patch)
tree3fdd9312ecc6d593f60bef9d12a26bba2ab2484f /docker
parentba8cb4ce4a9be1bd4f1ccf19e519fc5560b5fdbc (diff)
Run CTest in parallel (#7952)
* Don't pre-load engine before other plug-ins This was a fix for the post-processing plug-in that's no longer required. It was also only applied when running from source, so obviously it's not required or we'd have seen it in the builds. * Run automated tests in parallel Done during Turbo Testing and Tooling. * Pass number of processors via ctest command itself More reliable apparently because it's a CMake variable that doesn't get cached. It shouldn't get cached or set in the CMake script because it's not the same for every computer. Done during Turbo Testing and Tooling.
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/build.sh b/docker/build.sh
index a500663c64..39632b348b 100755
--- a/docker/build.sh
+++ b/docker/build.sh
@@ -67,4 +67,4 @@ cmake3 \
-DBUILD_TESTS=ON \
..
make
-ctest3 --output-on-failure -T Test
+ctest3 -j4 --output-on-failure -T Test