From 6da8492699bbbe2b349f7f7ae0823954d60eee70 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Mon, 16 Mar 2026 16:52:53 -0700 Subject: [PATCH] ci/gfxreconstruct: Disable OpenXR support. We aren't keeping the shared lib, so gfxrecon-replay would fail due to the missing lib. Part-of: --- .gitlab-ci/container/build-gfxreconstruct.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/container/build-gfxreconstruct.sh b/.gitlab-ci/container/build-gfxreconstruct.sh index 3dceb385c2a..614e632a99f 100644 --- a/.gitlab-ci/container/build-gfxreconstruct.sh +++ b/.gitlab-ci/container/build-gfxreconstruct.sh @@ -19,7 +19,7 @@ pushd /gfxreconstruct git checkout "$GFXRECONSTRUCT_VERSION" git submodule update --init git submodule update -cmake -S . -B _build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/gfxreconstruct/build -DBUILD_WERROR=OFF +cmake -S . -B _build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/gfxreconstruct/build -DBUILD_WERROR=OFF -DGFXRECON_ENABLE_OPENXR=OFF cmake --build _build --parallel --target tools/{replay,info}/install/strip find . -not -path './build' -not -path './build/*' -delete popd