From 5d0c96a8c2c5410b330e5389aab43227fafc1b1f Mon Sep 17 00:00:00 2001 From: "Juan A. Suarez Romero" Date: Tue, 26 Jan 2021 19:13:21 +0100 Subject: [PATCH] ci: add option to overwrite CPU arch When loading Vulkan ICD file, it uses the CPU machine identifier to load the correct one, in case multiple versions are installed. This is fine if the machine where Mesa has been built and the machine where the test is run are exactly the same. But this is not always the case. As example, for armhf architecture, the machine where Mesa is built is identified as `arm7hlf`, but the Raspberry Pi 4 is identified as `armv7l`, so it will fail to load the ICD file, though both are totally compatible. This allow to define the architecture instead. Signed-off-by: Juan A. Suarez Romero Reviewed-by: Eric Anholt Part-of: --- .gitlab-ci/bare-metal/rootfs-setup.sh | 1 + .gitlab-ci/deqp-runner.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/bare-metal/rootfs-setup.sh b/.gitlab-ci/bare-metal/rootfs-setup.sh index 82367ad50b9..ce8b6d4ba7d 100644 --- a/.gitlab-ci/bare-metal/rootfs-setup.sh +++ b/.gitlab-ci/bare-metal/rootfs-setup.sh @@ -69,6 +69,7 @@ for var in \ PIGLIT_REPLAY_UPLOAD_TO_MINIO \ PIGLIT_RESULTS \ TU_DEBUG \ + VK_CPU \ VK_DRIVER \ ; do if [ -n "${!var+x}" ]; then diff --git a/.gitlab-ci/deqp-runner.sh b/.gitlab-ci/deqp-runner.sh index 92f97045fe5..8a52b7909cc 100755 --- a/.gitlab-ci/deqp-runner.sh +++ b/.gitlab-ci/deqp-runner.sh @@ -34,7 +34,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.`uname -m`.json +export VK_ICD_FILENAMES=`pwd`/install/share/vulkan/icd.d/"$VK_DRIVER"_icd.${VK_CPU:-`uname -m`}.json # the runner was failing to look for libkms in /usr/local/lib for some reason # I never figured out.