From f62aa807799a85fda688b10927fbcb45dcde1509 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Fri, 14 Sep 2018 19:46:01 +0200
Subject: [PATCH] CI: increase number of CPUs for MATLAB testsuite

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ce0e43a66a..666d59bf16 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,7 +33,7 @@ testsuite_matlab:
   script:
     - autoreconf -si
     - './configure --disable-octave --with-matlab=$(dirname $(dirname $(readlink -f `which matlab`))) MATLAB_VERSION=$(echo version | matlab -nodesktop -nodisplay -nosplash 2>/dev/null | sed -En "/ans\ =/!d;n;n;s/^[^0-9]*([0-9]+\.[0-9]+).*$/\1/;p")'
-    - make -j $(($(nproc) / 2)) -C tests check-matlab
+    - make -j $(($(nproc) * 3 / 4)) -C tests check-matlab
     - cat tests/run_test_matlab_output.txt
   artifacts:
     paths:
-- 
GitLab