summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-08-28 16:51:35 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-08-28 16:51:35 +0200
commitf65f71429334ea77d3e53b6e0b09aad1a2842a8d (patch)
tree60e16d91338fcf1904531334cf56fa372c1475d8 /.gitlab-ci.yml
parent501fe50af37262148ed97c6cc801c9aa3cd40d81 (diff)
downloadgnutls-f65f71429334ea77d3e53b6e0b09aad1a2842a8d.tar.gz
.gitlab-ci.yml: use the same number of CPUs in all the checks
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f0a9285ff9..abd36a7a19 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ Build with separate build dir:
script:
- git submodule update --init && make autoreconf && mkdir -p build && cd build &&
../configure --with-included-libtasn1 --disable-doc --disable-valgrind-tests &&
- make -j2 && make check -j3
+ make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- fast
@@ -43,7 +43,7 @@ Build and Check with asan:
Build and Check:
script:
- git submodule update --init && make autoreconf && ./configure --with-included-libtasn1
- --disable-doc --disable-valgrind-tests && make -j2 && make check -j3
+ --disable-doc --disable-valgrind-tests && make -j4 && make check -j4
- cat tests/test-suite.log
tags:
- slow