From e3c3b270d81d1dea4c084befee3c99d78f87d1b5 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 22 Mar 2024 18:44:45 +0000 Subject: [PATCH] ci/deqp: build glcts in gles build, for gles*-khr tests Part-of: --- .gitlab-ci/container/build-deqp.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/container/build-deqp.sh b/.gitlab-ci/container/build-deqp.sh index 85271b92297..fae0b38d324 100644 --- a/.gitlab-ci/container/build-deqp.sh +++ b/.gitlab-ci/container/build-deqp.sh @@ -188,6 +188,7 @@ case "${DEQP_API}" in ;; GLES) deqp_build_targets+=(deqp-gles{2,3,31}) + deqp_build_targets+=(glcts) # needed for gles*-khr tests # deqp-egl also comes from this build, but it is handled separately above. ;; esac @@ -252,7 +253,7 @@ find . -depth \( -iname '*cmake*' -o -name '*ninja*' -o -name '*.o' -o -name '*. if [ "${DEQP_API}" = 'VK' ]; then ${STRIP_CMD:-strip} external/vulkancts/modules/vulkan/deqp-vk fi -if [ "${DEQP_API}" = 'GL' ]; then +if [ "${DEQP_API}" = 'GL' ] || [ "${DEQP_API}" = 'GLES' ]; then ${STRIP_CMD:-strip} external/openglcts/modules/glcts fi if [ "${DEQP_API}" = 'GLES' ]; then