From: Samuel Pitoiset Date: Thu, 14 Nov 2019 11:09:44 +0000 (+0100) Subject: gitlab-ci: configure the Vulkan ICD export with VK_DRIVER X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f32bf4f1e249a2d068cb25bfa77550f533b791c0;p=mesa.git gitlab-ci: configure the Vulkan ICD export with VK_DRIVER Signed-off-by: Samuel Pitoiset Reviewed-by: Eric Engestrom --- diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index c9231c7c54b..bc561821a0d 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -19,6 +19,13 @@ if [ -z "$DEQP_VER" ]; then exit 1 fi +if [ "$DEQP_VER" == "vk" ]; then + if [ -z "$VK_DRIVER" ]; then + echo 'VK_DRIVER must be to something like "radeon" or "intel" for the test run' + exit 1 + fi +fi + if [ -z "$DEQP_SKIPS" ]; then echo 'DEQP_SKIPS must be set to something like "deqp-default-skips.txt"' exit 1 @@ -29,6 +36,7 @@ ARTIFACTS=`pwd`/artifacts # Set up the driver environment. export LD_LIBRARY_PATH=`pwd`/install/lib/ export EGL_PLATFORM=surfaceless +export VK_ICD_FILENAMES=`pwd`/install/share/vulkan/icd.d/"$VK_DRIVER"_icd.x86_64.json # the runner was failing to look for libkms in /usr/local/lib for some reason # I never figured out.