amd/ci: avoid re-running all the test jobs when changing the expectations for only one of them

Previously, any change to any job would trigger every job.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26127>
This commit is contained in:
Eric Engestrom 2023-11-09 11:23:44 +00:00 committed by Marge Bot
parent 0f0f6c6227
commit 1b18ca83fa
2 changed files with 10 additions and 1 deletions

View File

@ -183,6 +183,10 @@ if [ -z "$DEQP_SUITE" ]; then
-- \
$DEQP_OPTIONS
else
# If you change the format of the suite toml filenames or the
# $GPU_VERSION-{fails,flakes,skips}.txt filenames, look through the rest
# of the tree for other places that need to be kept in sync (e.g.
# src/amd/ci/gitlab-ci-inc.yml)
deqp-runner \
suite \
--suite $INSTALL/deqp-$DEQP_SUITE.toml \

View File

@ -9,7 +9,12 @@
- src/gallium/winsys/amdgpu/**/*
- src/amd/*
- src/amd/addrlib/**/*
- src/amd/ci/*
- src/amd/ci/gitlab-ci.yml
- src/amd/ci/gitlab-ci-inc.yml
- src/amd/ci/deqp-$DEQP_SUITE.toml
- src/amd/ci/$GPU_VERSION-fails.txt
- src/amd/ci/$GPU_VERSION-flakes.txt
- src/amd/ci/$GPU_VERSION-skips.txt
- src/amd/common/**/*
- src/amd/llvm/**/*
- src/amd/registers/**/*