From 393eafe10bd487161e7f3d6e924bbf8889415328 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 20 May 2024 17:48:57 +0200 Subject: [PATCH] ci/deqp: error out in case of invalid build API Part-of: --- .gitlab-ci/container/build-deqp.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/container/build-deqp.sh b/.gitlab-ci/container/build-deqp.sh index 3565982a060..85271b92297 100644 --- a/.gitlab-ci/container/build-deqp.sh +++ b/.gitlab-ci/container/build-deqp.sh @@ -91,6 +91,7 @@ case "${DEQP_API}" in VK) DEQP_VERSION="vulkan-cts-$DEQP_VK_VERSION";; GL) DEQP_VERSION="opengl-cts-$DEQP_GL_VERSION";; GLES) DEQP_VERSION="opengl-es-cts-$DEQP_GLES_VERSION";; + *) echo "Unexpected DEQP_API value: $DEQP_API"; exit 1;; esac mkdir -p /VK-GL-CTS