From: Samuel Pitoiset Date: Mon, 9 Mar 2020 16:53:51 +0000 (+0100) Subject: gitlab-ci: add rules:changes for RADV X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8f5543990e250d4a83467c8e9d6d663dc20d6d4b;p=mesa.git 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 Reviewed-by: Bas Nieuwenhuizen Tested-by: Marge Bot Part-of: --- 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