aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorEric Engestrom <eric@igalia.com>2024-01-22 07:45:08 +0000
committerMarge Bot <emma+marge@anholt.net>2024-01-26 21:49:05 +0000
commit969b430a23f12c8d00bddde5e05faa3a8707593b (patch)
treef33aca676f093804d4ae04d6b7682a83d2f96230 /.gitlab-ci
parentd9833b89a2af6ee0d46a9b1977ac41d94a5d29ad (diff)
downloadmesa3d-969b430a23f12c8d00bddde5e05faa3a8707593b.tar.gz
ci/deqp: only compile EGL tests in GL builds, not VK builds
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27250>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/container/build-deqp.sh2
1 files changed, 1 insertions, 1 deletions
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 \