From 73b87a92f881504ae91eb83c7a7593e4ace3ae2c Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 1 Apr 2022 14:47:27 +0100 Subject: CI: Don't wait for Windows Docker image before doing Unix builds The default in Gitlab-CI is that each job waits for all jobs in previous stages to complete, but we can override this default by explicitly saying that there are no prerequisites. Signed-off-by: Simon McVittie --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e30e3e9f..4ab3ed58 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,6 +72,8 @@ windows amd64 docker: .unix-host-build: stage: build + # No need to wait for the Windows Docker image to be built + needs: [] cache: key: ${CI_JOB_NAME} paths: -- cgit v1.2.1