VirtualBox

source: vbox/trunk/src/VBox/Additions/3D/mesa/mesa-24.0.2/.gitlab-ci/container/build-deqp.sh@ 103996

Last change on this file since 103996 was 103996, checked in by vboxsync, 13 months ago

Additions/3D/mesa: export mesa-24.0.2 to OSE. bugref:10606

  • Property svn:eol-style set to native
File size: 5.5 KB
Line 
1#!/usr/bin/env bash
2# shellcheck disable=SC2086 # we want word splitting
3
4# When changing this file, you need to bump the following
5# .gitlab-ci/image-tags.yml tags:
6# DEBIAN_X86_64_TEST_ANDROID_TAG
7# DEBIAN_X86_64_TEST_GL_TAG
8# DEBIAN_X86_64_TEST_VK_TAG
9# KERNEL_ROOTFS_TAG
10
11set -ex -o pipefail
12
13DEQP_VERSION=vulkan-cts-1.3.7.0
14
15git config --global user.email "[email protected]"
16git config --global user.name "Mesa CI"
17git clone \
18 https://github.com/KhronosGroup/VK-GL-CTS.git \
19 -b $DEQP_VERSION \
20 --depth 1 \
21 /VK-GL-CTS
22pushd /VK-GL-CTS
23
24mkdir -p /deqp
25
26echo "dEQP base version $DEQP_VERSION" > /deqp/version-log
27
28# Patches to VulkanCTS may come from commits in their repo (listed in
29# cts_commits_to_backport) or patch files stored in our repo (in the patch
30# directory `$OLDPWD/.gitlab-ci/container/patches/` listed in cts_patch_files).
31# Both list variables would have comments explaining the reasons behind the
32# patches.
33
34cts_commits_to_backport=(
35 # Take multiview into account for task shader inv. stats
36 22aa3f4c59f6e1d4daebd5a8c9c05bce6cd3b63b
37
38 # Remove illegal mesh shader query tests
39 2a87f7b25dc27188be0f0a003b2d7aef69d9002e
40
41 # Relax fragment shader invocations result verifications
42 0d8bf6a2715f95907e9cf86a86876ff1f26c66fe
43
44 # Fix several issues in dynamic rendering basic tests
45 c5453824b498c981c6ba42017d119f5de02a3e34
46)
47
48for commit in "${cts_commits_to_backport[@]}"
49do
50 PATCH_URL="https://github.com/KhronosGroup/VK-GL-CTS/commit/$commit.patch"
51 echo "Apply patch to VK-GL-CTS from $PATCH_URL"
52 curl -L --retry 4 -f --retry-all-errors --retry-delay 60 $PATCH_URL | \
53 git am -
54done
55
56cts_patch_files=(
57 # Android specific patches.
58 build-deqp_Allow-running-on-Android-from-the-command-line.patch
59 build-deqp_Android-prints-to-stdout-instead-of-logcat.patch
60)
61
62for patch in "${cts_patch_files[@]}"
63do
64 echo "Apply patch to VK-GL-CTS from $patch"
65 git am < $OLDPWD/.gitlab-ci/container/patches/$patch
66done
67
68echo "The following local patches are applied on top:" >> /deqp/version-log
69git log --reverse --oneline $DEQP_VERSION.. --format=%s | sed 's/^/- /' >> /deqp/version-log
70
71# --insecure is due to SSL cert failures hitting sourceforge for zlib and
72# libpng (sigh). The archives get their checksums checked anyway, and git
73# always goes through ssh or https.
74python3 external/fetch_sources.py --insecure
75
76# Save the testlog stylesheets:
77cp doc/testlog-stylesheet/testlog.{css,xsl} /deqp
78popd
79
80pushd /deqp
81
82if [ "${DEQP_TARGET}" != 'android' ]; then
83 # When including EGL/X11 testing, do that build first and save off its
84 # deqp-egl binary.
85 cmake -S /VK-GL-CTS -B . -G Ninja \
86 -DDEQP_TARGET=x11_egl_glx \
87 -DCMAKE_BUILD_TYPE=Release \
88 $EXTRA_CMAKE_ARGS
89 ninja modules/egl/deqp-egl
90 mv /deqp/modules/egl/deqp-egl /deqp/modules/egl/deqp-egl-x11
91
92 cmake -S /VK-GL-CTS -B . -G Ninja \
93 -DDEQP_TARGET=wayland \
94 -DCMAKE_BUILD_TYPE=Release \
95 $EXTRA_CMAKE_ARGS
96 ninja modules/egl/deqp-egl
97 mv /deqp/modules/egl/deqp-egl /deqp/modules/egl/deqp-egl-wayland
98fi
99
100cmake -S /VK-GL-CTS -B . -G Ninja \
101 -DDEQP_TARGET=${DEQP_TARGET:-default} \
102 -DCMAKE_BUILD_TYPE=Release \
103 $EXTRA_CMAKE_ARGS
104
105# Make sure `default` doesn't silently stop detecting one of the platforms we care about
106if [ "${DEQP_TARGET}" = 'default' ]; then
107 grep -q DEQP_SUPPORT_WAYLAND=1 build.ninja
108 grep -q DEQP_SUPPORT_X11=1 build.ninja
109 grep -q DEQP_SUPPORT_XCB=1 build.ninja
110fi
111
112mold --run ninja
113
114if [ "${DEQP_TARGET}" = 'android' ]; then
115 mv /deqp/modules/egl/deqp-egl /deqp/modules/egl/deqp-egl-android
116fi
117
118# Copy out the mustpass lists we want.
119mkdir /deqp/mustpass
120for mustpass in $(< /VK-GL-CTS/external/vulkancts/mustpass/main/vk-default.txt) ; do
121 cat /VK-GL-CTS/external/vulkancts/mustpass/main/$mustpass \
122 >> /deqp/mustpass/vk-master.txt
123done
124
125if [ "${DEQP_TARGET}" != 'android' ]; then
126 cp \
127 /deqp/external/openglcts/modules/gl_cts/data/mustpass/gles/aosp_mustpass/3.2.6.x/*.txt \
128 /deqp/mustpass/.
129 cp \
130 /deqp/external/openglcts/modules/gl_cts/data/mustpass/egl/aosp_mustpass/3.2.6.x/egl-master.txt \
131 /deqp/mustpass/.
132 cp \
133 /deqp/external/openglcts/modules/gl_cts/data/mustpass/gles/khronos_mustpass/3.2.6.x/*-master.txt \
134 /deqp/mustpass/.
135 cp \
136 /deqp/external/openglcts/modules/gl_cts/data/mustpass/gl/khronos_mustpass/4.6.1.x/*-master.txt \
137 /deqp/mustpass/.
138 cp \
139 /deqp/external/openglcts/modules/gl_cts/data/mustpass/gl/khronos_mustpass_single/4.6.1.x/*-single.txt \
140 /deqp/mustpass/.
141
142 # Save *some* executor utils, but otherwise strip things down
143 # to reduct deqp build size:
144 mkdir /deqp/executor.save
145 cp /deqp/executor/testlog-to-* /deqp/executor.save
146 rm -rf /deqp/executor
147 mv /deqp/executor.save /deqp/executor
148fi
149
150# Remove other mustpass files, since we saved off the ones we wanted to conventient locations above.
151rm -rf /deqp/external/openglcts/modules/gl_cts/data/mustpass
152rm -rf /deqp/external/vulkancts/modules/vulkan/vk-master*
153rm -rf /deqp/external/vulkancts/modules/vulkan/vk-default
154
155rm -rf /deqp/external/openglcts/modules/cts-runner
156rm -rf /deqp/modules/internal
157rm -rf /deqp/execserver
158rm -rf /deqp/framework
159find . -depth \( -iname '*cmake*' -o -name '*ninja*' -o -name '*.o' -o -name '*.a' \) -exec rm -rf {} \;
160${STRIP_CMD:-strip} external/vulkancts/modules/vulkan/deqp-vk
161${STRIP_CMD:-strip} external/openglcts/modules/glcts
162${STRIP_CMD:-strip} modules/*/deqp-*
163du -sh ./*
164rm -rf /VK-GL-CTS
165popd
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette