From c87e74ea1d66ec02cb969ae55527fe17ee6305c7 Mon Sep 17 00:00:00 2001 From: LoveIsGrief <loveisgrief@tuta.io> Date: Sat, 23 Jan 2021 22:56:10 +0100 Subject: [PATCH] CI: Move build_docker to build stage --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e4c9e65ec7..9aaf5aa013 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,7 @@ image: openjdk:8-alpine stages: - test + - build cache: key: ${CI_COMMIT_REF_SLUG} @@ -26,7 +27,7 @@ test: # Make sure we can build a docker image # It's cached for later jobs build_docker: - stage: test + stage: build image: docker:19.03.12 services: - docker:19.03.12-dind -- GitLab