From 204b83d80f790923fc946c2793723df7dc27ead7 Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Thu, 6 Nov 2025 11:38:43 +0100 Subject: [PATCH] ci: Remove Piglit replayer from test-vk container/rootfs We've been building the Piglit replayer in the test-vk container/rootfs, but all trace-replay testing in CI is actually done using the test-gl rootfs. Despite the naming, the "gl" and "vk" rootfs variants don't correspond to the graphics API being tested - just the different sets of tools bundled. The required tools for trace replay are already included in the test-gl rootfs, so there's no need to build or use the test-vk variant for this purpose. Signed-off-by: Valentine Burley Part-of: --- .gitlab-ci/container/debian/test-vk.sh | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.gitlab-ci/container/debian/test-vk.sh b/.gitlab-ci/container/debian/test-vk.sh index dfa3e18567f..cc744be9d09 100644 --- a/.gitlab-ci/container/debian/test-vk.sh +++ b/.gitlab-ci/container/debian/test-vk.sh @@ -77,28 +77,6 @@ apt-get install -y --no-remove --no-install-recommends \ section_end debian_setup -############### Build piglit replayer - -if [ "$DEBIAN_ARCH" != "armhf" ]; then - # We don't run any _piglit_ Vulkan tests in the containers. - PIGLIT_OPTS="-DPIGLIT_USE_WAFFLE=ON - -DPIGLIT_USE_GBM=OFF - -DPIGLIT_USE_WAYLAND=OFF - -DPIGLIT_USE_X11=OFF - -DPIGLIT_BUILD_GLX_TESTS=OFF - -DPIGLIT_BUILD_EGL_TESTS=OFF - -DPIGLIT_BUILD_WGL_TESTS=OFF - -DPIGLIT_BUILD_GL_TESTS=OFF - -DPIGLIT_BUILD_GLES1_TESTS=OFF - -DPIGLIT_BUILD_GLES2_TESTS=OFF - -DPIGLIT_BUILD_GLES3_TESTS=OFF - -DPIGLIT_BUILD_CL_TESTS=OFF - -DPIGLIT_BUILD_VK_TESTS=OFF - -DPIGLIT_BUILD_DMA_BUF_TESTS=OFF" \ - PIGLIT_BUILD_TARGETS="piglit_replayer" \ - . .gitlab-ci/container/build-piglit.sh -fi - ############### Build dEQP VK DEQP_API=tools \