Module: Mesa Branch: main Commit: a61dcdd4b1dc3c2ce5229c3f66e1327a12059968 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a61dcdd4b1dc3c2ce5229c3f66e1327a12059968
Author: Eric Engestrom <[email protected]> Date: Thu Nov 2 17:22:14 2023 +0000 ci/build-deqp: split deqp version into a variable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26013> --- .gitlab-ci/container/build-deqp.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/container/build-deqp.sh b/.gitlab-ci/container/build-deqp.sh index ef3cd2e5429..fe93e594940 100644 --- a/.gitlab-ci/container/build-deqp.sh +++ b/.gitlab-ci/container/build-deqp.sh @@ -10,11 +10,13 @@ set -ex -o pipefail +DEQP_VERSION=vulkan-cts-1.3.7.0 + git config --global user.email "[email protected]" git config --global user.name "Mesa CI" git clone \ https://github.com/KhronosGroup/VK-GL-CTS.git \ - -b vulkan-cts-1.3.7.0 \ + -b $DEQP_VERSION \ --depth 1 \ /VK-GL-CTS pushd /VK-GL-CTS
