From 300afd3c86ea7dfc742b73963558500821668b3e Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 14 May 2024 15:50:38 +0200 Subject: [PATCH] ci/vkd3d: un-hardcode architecture Part-of: --- .gitlab-ci/vkd3d-proton/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/vkd3d-proton/run.sh b/.gitlab-ci/vkd3d-proton/run.sh index 6f5ceb49da2..cba3299108a 100755 --- a/.gitlab-ci/vkd3d-proton/run.sh +++ b/.gitlab-ci/vkd3d-proton/run.sh @@ -23,7 +23,8 @@ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$INSTALL/lib/:/vkd3d-proton-tests/x64/" MESA_VERSION=$(sed 's/\./\\./g' "$INSTALL/VERSION") # Set the Vulkan driver to use. -export VK_DRIVER_FILES="$INSTALL/share/vulkan/icd.d/${VK_DRIVER}_icd.x86_64.json" +ARCH=$(uname -m) +export VK_DRIVER_FILES="$INSTALL/share/vulkan/icd.d/${VK_DRIVER}_icd.$ARCH.json" # Set environment for Wine. export WINEDEBUG="-all"