From a8cd7a33469b151402dd97808459f3c27542790b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 11 Sep 2018 19:09:45 +0200 Subject: [PATCH] Parallelize CI build --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c91d9b71..4daff3dc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,4 +2,6 @@ build: script: - autoreconf -si - ./configure - - make all pdf html + - make -j$(nproc) + - make -j$(nproc) pdf + - make -j$(nproc) html -- GitLab