From 2c9fdaa83013ac60b55ef821d502282e297505b8 Mon Sep 17 00:00:00 2001 From: Helen Koike Date: Fri, 22 Dec 2023 12:59:30 -0300 Subject: [PATCH] ci: fix python-test dependency error on merge requests Pipeline is unable to run due to the following error: 'python-test' job needs 'debian/x86_64_build' job, but 'debian/x86_64_build' is not in any previous stage python-test job has the following rule: - changes: - bin/ci/**/* so add it as well to debian/x86_64_build Signed-off-by: Helen Koike Part-of: --- .gitlab-ci/container/gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci/container/gitlab-ci.yml b/.gitlab-ci/container/gitlab-ci.yml index 55c47d0fef0..02d3464b531 100644 --- a/.gitlab-ci/container/gitlab-ci.yml +++ b/.gitlab-ci/container/gitlab-ci.yml @@ -82,6 +82,10 @@ debian/x86_64_build: - .use-debian/x86_64_build-base variables: MESA_IMAGE_TAG: &debian-x86_64_build ${DEBIAN_BUILD_TAG} + rules: + - !reference [.use-debian/x86_64_build-base, rules] + # python-test requires this job + - !reference [python-test, rules] .use-debian/x86_64_build: extends: