From 969b430a23f12c8d00bddde5e05faa3a8707593b Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 22 Jan 2024 07:45:08 +0000 Subject: [PATCH] ci/deqp: only compile EGL tests in GL builds, not VK builds Part-of: --- .gitlab-ci/container/build-deqp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/container/build-deqp.sh b/.gitlab-ci/container/build-deqp.sh index 92c7bf92cc7..2183396779d 100644 --- a/.gitlab-ci/container/build-deqp.sh +++ b/.gitlab-ci/container/build-deqp.sh @@ -111,7 +111,7 @@ popd pushd /deqp -if [ "${DEQP_TARGET}" != 'android' ]; then +if [ "${DEQP_API}" = 'GL' ] && [ "${DEQP_TARGET}" != 'android' ]; then # When including EGL/X11 testing, do that build first and save off its # deqp-egl binary. cmake -S /VK-GL-CTS -B . -G Ninja \