aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2020-03-09 17:53:51 +0100
committerSamuel Pitoiset <[email protected]>2020-03-11 08:04:05 +0100
commit8f5543990e250d4a83467c8e9d6d663dc20d6d4b (patch)
tree2cdcd0f429e012b1986f4eca28baadb4f5cec8e5
parentbe22995ecf868a90c6b14fce9b907cf302459e71 (diff)
gitlab-ci: add rules:changes for RADV
Including mesa_core_file_list is probably not the best but it's better than nothing. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4117> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4117>
-rw-r--r--.gitlab-ci.yml1
-rw-r--r--.gitlab-ci/test-source-dep.yml11
2 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5cc46fba89d..ba4b9c6d40e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -708,6 +708,7 @@ arm64_a306_gles2:
# RADV CI
.test-radv:
+ extends: .radv-rules
stage: misc-tests
variables:
VK_DRIVER: radeon
diff --git a/.gitlab-ci/test-source-dep.yml b/.gitlab-ci/test-source-dep.yml
index a243ea99b6f..12faf0a510a 100644
--- a/.gitlab-ci/test-source-dep.yml
+++ b/.gitlab-ci/test-source-dep.yml
@@ -116,3 +116,14 @@
- src/lima/**/*
when: on_success
- when: never
+
+.radv-rules:
+ rules:
+ - changes:
+ *mesa_core_file_list
+ when: on_success
+ - changes:
+ - src/amd/**/*
+ - src/vulkan/**/*
+ when: on_success
+ - when: never