From 7076f1eed7fdef03f78717ee1d0155f4f42f0034 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sat, 6 Nov 2021 18:53:42 +0200
Subject: [PATCH] Don't depend to base image jobs.

Those jobs are not always in the workflow and that makes the workflow
invalid in those cases. Since the build and push already happens before
those jobs will use the newer base images anyway.
---
 .gitlab-ci.yml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c25b9c1..f976ecd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,8 +28,6 @@ build-cgit:
   extends: .container-build
   variables:
     CONTEXT: cgit
-  needs:
-    - job: push-httpd
 
 push-cgit:
   extends: .container-push
@@ -140,8 +138,6 @@ build-webdav:
   extends: .container-build
   variables:
     CONTEXT: webdav
-  needs:
-    - job: push-httpd
 
 push-webdav:
   extends: .container-push
-- 
GitLab