From c4dc549a5ee6ea17a96dd5e8bd2e90b0108eec0f Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Thu, 2 Feb 2023 14:04:10 +0200 Subject: [PATCH] ci: Make the plugin update jobs depend on the image builds Part-of: --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2b21bd88..5a4997bd4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -237,6 +237,9 @@ plugins-update-stable: - .plugins-update - .img-stable image: quay.io/freedesktop.org/ci-templates:container-build-base-2021-07-29.0 + needs: + - job: 'build-stable' + artifacts: false variables: UPDATE_IMG: "stable" @@ -245,6 +248,9 @@ plugins-update-msrv: - .plugins-update - .img-msrv image: quay.io/freedesktop.org/ci-templates:container-build-base-2021-07-29.0 + needs: + - job: 'build-msrv' + artifacts: false variables: UPDATE_IMG: "msrv" @@ -253,6 +259,9 @@ plugins-update-nightly: - .plugins-update - .img-nightly image: quay.io/freedesktop.org/ci-templates:container-build-base-2021-07-29.0 + needs: + - job: 'build-nightly' + artifacts: false variables: UPDATE_IMG: "nightly"