aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2020-05-28 12:33:37 -0700
committerMarge Bot <[email protected]>2020-06-09 18:28:17 +0000
commitf70030d276708e85d951addd19993d967c3b71f9 (patch)
tree72a5c54936ab6151ce67ad1583bf7ab0df909a49 /.gitlab-ci
parent58dd904c592850a4886c02e65b56e87641d2ecbf (diff)
ci: Bump up to the current version of the VK CTS.
For enabling VK CTS on freedreno, I've heard there were important stability fixes in the CTS recently. Reviewed-by: Samuel Pitoiset <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5266>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/build-deqp-vk.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/.gitlab-ci/build-deqp-vk.sh b/.gitlab-ci/build-deqp-vk.sh
index 206ac0109a1..4751ebfcd55 100644
--- a/.gitlab-ci/build-deqp-vk.sh
+++ b/.gitlab-ci/build-deqp-vk.sh
@@ -2,13 +2,18 @@
set -ex
+git config --global user.email "[email protected]"
+git config --global user.name "Mesa CI"
git clone \
- --depth 1 \
https://github.com/KhronosGroup/VK-GL-CTS.git \
- -b vulkan-cts-1.2.1.0 \
+ -b vulkan-cts-1.2.2.1 \
/VK-GL-CTS
pushd /VK-GL-CTS
+# Cherry pick a fix that's not in 1.2.2.1 yet. Re-add --depth 1 to the clone
+# when an uprev removes this.
+git cherry-pick -x ea6f1ffae14de94bbd9c354ad5a6c3f452f65ac4
+
# --insecure is due to SSL cert failures hitting sourceforge for zlib and
# libpng (sigh). The archives get their checksums checked anyway, and git
# always goes through ssh or https.