From 5a538346237b55d26e5c2677548b58276d04ee3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=98=B8?= <😸@43-1.org> Date: Sun, 30 Aug 2020 09:34:13 +0200 Subject: [PATCH] ci: change how many jobs run in parallel This way we can also run Python 3 tests in parallel without requiring more resources in total. --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 79a54c80..67e90ce1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ test buster: <<: *template image: debian:buster - parallel: 5 + parallel: 2 script: debian/run-ci --with-coverage artifacts: expire_in: 1 day @@ -17,6 +17,7 @@ test buster: tests buster python3: <<: *template image: debian:buster + parallel: 2 script: debian/run-ci --python3 artifacts: paths: @@ -26,6 +27,7 @@ tests buster python3: tests bullseye python3: <<: *template image: debian:bullseye + parallel: 2 script: debian/run-ci --python3 artifacts: paths: -- GitLab