From 328a3de7cc2399804ad9675c8e8181e29c83aee3 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 27 Nov 2024 18:01:08 +0100 Subject: [PATCH] ci/lava: turn the $BUILD_VK check into a proper if block Allows us to simply add something in the block in the next commit. 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 83dc0e31fc6..c91ca2293b9 100755 --- a/.gitlab-ci/container/lava_build.sh +++ b/.gitlab-ci/container/lava_build.sh @@ -306,9 +306,11 @@ DEQP_API=GLES \ DEQP_TARGET=surfaceless \ . .gitlab-ci/container/build-deqp.sh -[ "$BUILD_VK" == "ON" ] && DEQP_API=VK \ -DEQP_TARGET=default \ -. .gitlab-ci/container/build-deqp.sh +if [ "$BUILD_VK" == "ON" ]; then + DEQP_API=VK \ + DEQP_TARGET=default \ + . .gitlab-ci/container/build-deqp.sh +fi rm -rf /VK-GL-CTS