From: Eric Anholt Date: Tue, 26 May 2020 18:18:33 +0000 (-0700) Subject: ci: Auto-detect the architecture for VK ICD filenames. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6766d51c15fc8143466b53aa7384d0c06218f12d;p=mesa.git ci: Auto-detect the architecture for VK ICD filenames. Reviewed-by: Kristian H. Kristensen Part-of: --- diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index 1b18bb405d8..f40b72a45ed 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -29,7 +29,7 @@ INSTALL=`pwd`/install # 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 +export VK_ICD_FILENAMES=`pwd`/install/share/vulkan/icd.d/"$VK_DRIVER"_icd.`uname -m`.json # the runner was failing to look for libkms in /usr/local/lib for some reason # I never figured out.