From 3563896460d1267bfdc7d70abd76f62c68c9696f Mon Sep 17 00:00:00 2001 From: nodiscc Date: Fri, 17 Feb 2023 15:36:53 +0100 Subject: [PATCH] gitlab CI: run test/debianwiki jobs in parallel --- .gitlab-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af1960b..3145b53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,9 @@ -image: ruby +stages: + - test + - debianwiki test: + image: ruby before_script: - gem install awesome_bot - apt-get update && apt-get install -y shellcheck python3-venv @@ -10,6 +13,7 @@ test: - make checks only: - master + needs: [] debianwiki: image: debian:sid-slim @@ -18,3 +22,4 @@ debianwiki: - apt-get update && apt-get install -y make script: - make debianwiki + needs: []