From d50f84f5c669154b0462a6489e13f49e473eea11 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 11 May 2024 21:53:27 +0300 Subject: [PATCH] Fix the Matrix GitLab jobs. Forgot the rules to only run when needed. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5d3c14c..c8fe660 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -109,16 +109,19 @@ matrix-build: tags: &matrix-tags [host01.shore.co.il] variables: &matrix-vars WORKDIR: Compose/matrix + rules: *compose-rules matrix-pull: extends: .compose-pull tags: *matrix-tags variables: *matrix-vars + rules: *compose-rules matrix-run: extends: .compose-run tags: *matrix-tags variables: *matrix-vars + rules: *compose-rules needs: - job: matrix-build - job: matrix-pull -- GitLab