From 17966a6a8026bd7425d3cb49aa0e411d2a07ca16 Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Tue, 4 Feb 2025 14:07:36 +0100 Subject: [PATCH] ci/lava: Don't build VK-main for arm64 Only amd64 needs the VK-main build, as it's only used by Raven and Stoney on RADV. Signed-off-by: Valentine Burley Reviewed-by: Eric Engestrom Reviewed-by: Antonio Ospite Part-of: --- .gitlab-ci/container/lava_build.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci/container/lava_build.sh b/.gitlab-ci/container/lava_build.sh index 7f617e8b7f6..7457d01c464 100755 --- a/.gitlab-ci/container/lava_build.sh +++ b/.gitlab-ci/container/lava_build.sh @@ -335,9 +335,11 @@ if [ "$BUILD_VK" == "ON" ]; then DEQP_TARGET=default \ . .gitlab-ci/container/build-deqp.sh - DEQP_API=VK-main \ - DEQP_TARGET=default \ - . .gitlab-ci/container/build-deqp.sh + if [ "$DEBIAN_ARCH" == "amd64" ]; then + DEQP_API=VK-main \ + DEQP_TARGET=default \ + . .gitlab-ci/container/build-deqp.sh + fi fi rm -rf /VK-GL-CTS