From 588c3b26ff26fa6c59cac371fa81b4ac130f2dfa Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Tue, 23 Jan 2018 14:17:56 +0100 Subject: [PATCH] Try to limit the number of tests running in parallel --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6fa958b6..7b4b35d4c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,7 +45,7 @@ test_starpu_cuda_mpi: - chameleon_starpu_mpi.lcov script: - (cd build && - ctest --no-compress-output -V -j 5 + ctest --no-compress-output -V -R "test_shm_s|mpi_s" -D ExperimentalTest -D ExperimentalCoverage @@ -90,7 +90,7 @@ test_starpu_simgrid: script: - source .gitlab-ci-env.sh simu - (cd build && - ctest --no-compress-output -V -j 5 + ctest --no-compress-output -V -D ExperimentalTest -D ExperimentalCoverage -D ExperimentalSubmit @@ -130,7 +130,7 @@ test_quark: - chameleon_quark.lcov script: - (cd build && - ctest --no-compress-output -V -j 5 + ctest --no-compress-output -V -R "test_shm_s" -D ExperimentalTest -D ExperimentalCoverage -- GitLab