From e0bd2fae8b0532d7fadcd6f75918b4957c66cb86 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 18 Aug 2021 08:15:15 -0400 Subject: [PATCH] softpipe: fix ci rule ordering to avoid unnecessarily running jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes #5242 Reviewed-by: Michel Dänzer Part-of: --- src/gallium/drivers/softpipe/ci/gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/softpipe/ci/gitlab-ci.yml b/src/gallium/drivers/softpipe/ci/gitlab-ci.yml index fdb925e1b1c..51c5fa03ac0 100644 --- a/src/gallium/drivers/softpipe/ci/gitlab-ci.yml +++ b/src/gallium/drivers/softpipe/ci/gitlab-ci.yml @@ -1,8 +1,9 @@ .softpipe-deqp-test: extends: - - .softpipe-rules - .test-gl - .deqp-test + # this must be last to avoid breaking dependency rules + - .softpipe-rules variables: GPU_VERSION: softpipe LIBGL_ALWAYS_SOFTWARE: "true"