aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAndres Gomez <[email protected]>2020-02-20 18:26:30 +0200
committerAndres Gomez <[email protected]>2020-03-04 15:24:03 +0200
commit0ac731b1ff96de46998948aa06081efa5140d50e (patch)
tree79716045178fbe2e55e8d1f37aeb1a72e92e0758 /.gitlab-ci.yml
parent5c65f8b377a6485e6c155dad98cb8af49d594418 (diff)
gitlab-ci: Add jobs to be able to test Vulkan
Also, adds an example job for radv. Signed-off-by: Andres Gomez <[email protected]> Reviewed-by: Samuel Pitoiset <[email protected]> Reviewed-by: Alexandros Frantzis <[email protected]>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml28
1 files changed, 24 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 999f4c0e995..63d3539c62b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -722,19 +722,39 @@ radv_polaris10_vkcts:
tags:
- polaris10
+# Traces CI
.traces-test:
- extends:
- - .test-gl
cache:
key: ${CI_JOB_NAME}
paths:
- .git-lfs-storage/
+
+.traces-test-gl:
+ extends:
+ - .test-gl
+ - .traces-test
script:
- - ./artifacts/tracie-runner.sh
+ - ./artifacts/tracie-runner-gl.sh
+
+.traces-test-vk:
+ extends:
+ - .test-vk
+ - .traces-test
+ script:
+ - ./artifacts/tracie-runner-vk.sh
llvmpipe-traces:
+ extends: .traces-test-gl
variables:
LIBGL_ALWAYS_SOFTWARE: "true"
GALLIUM_DRIVER: "llvmpipe"
DEVICE_NAME: "gl-vmware-llvmpipe"
- extends: .traces-test
+
+radv-polaris10-traces:
+ extends:
+ - .traces-test-vk
+ - .test-radv
+ variables:
+ DEVICE_NAME: "vk-amd-polaris10"
+ tags:
+ - polaris10