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 |
|
---|
11 | set -ex -o pipefail
|
---|
12 |
|
---|
13 | DEQP_VERSION=vulkan-cts-1.3.7.0
|
---|
14 |
|
---|
15 | git config --global user.email "[email protected]"
|
---|
16 | git config --global user.name "Mesa CI"
|
---|
17 | git clone \
|
---|
18 | https://github.com/KhronosGroup/VK-GL-CTS.git \
|
---|
19 | -b $DEQP_VERSION \
|
---|
20 | --depth 1 \
|
---|
21 | /VK-GL-CTS
|
---|
22 | pushd /VK-GL-CTS
|
---|
23 |
|
---|
24 | mkdir -p /deqp
|
---|
25 |
|
---|
26 | echo "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 |
|
---|
34 | cts_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 |
|
---|
48 | for commit in "${cts_commits_to_backport[@]}"
|
---|
49 | do
|
---|
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 -
|
---|
54 | done
|
---|
55 |
|
---|
56 | cts_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 |
|
---|
62 | for patch in "${cts_patch_files[@]}"
|
---|
63 | do
|
---|
64 | echo "Apply patch to VK-GL-CTS from $patch"
|
---|
65 | git am < $OLDPWD/.gitlab-ci/container/patches/$patch
|
---|
66 | done
|
---|
67 |
|
---|
68 | echo "The following local patches are applied on top:" >> /deqp/version-log
|
---|
69 | git 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.
|
---|
74 | python3 external/fetch_sources.py --insecure
|
---|
75 |
|
---|
76 | # Save the testlog stylesheets:
|
---|
77 | cp doc/testlog-stylesheet/testlog.{css,xsl} /deqp
|
---|
78 | popd
|
---|
79 |
|
---|
80 | pushd /deqp
|
---|
81 |
|
---|
82 | if [ "${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
|
---|
98 | fi
|
---|
99 |
|
---|
100 | cmake -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
|
---|
106 | if [ "${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
|
---|
110 | fi
|
---|
111 |
|
---|
112 | mold --run ninja
|
---|
113 |
|
---|
114 | if [ "${DEQP_TARGET}" = 'android' ]; then
|
---|
115 | mv /deqp/modules/egl/deqp-egl /deqp/modules/egl/deqp-egl-android
|
---|
116 | fi
|
---|
117 |
|
---|
118 | # Copy out the mustpass lists we want.
|
---|
119 | mkdir /deqp/mustpass
|
---|
120 | for 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
|
---|
123 | done
|
---|
124 |
|
---|
125 | if [ "${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
|
---|
148 | fi
|
---|
149 |
|
---|
150 | # Remove other mustpass files, since we saved off the ones we wanted to conventient locations above.
|
---|
151 | rm -rf /deqp/external/openglcts/modules/gl_cts/data/mustpass
|
---|
152 | rm -rf /deqp/external/vulkancts/modules/vulkan/vk-master*
|
---|
153 | rm -rf /deqp/external/vulkancts/modules/vulkan/vk-default
|
---|
154 |
|
---|
155 | rm -rf /deqp/external/openglcts/modules/cts-runner
|
---|
156 | rm -rf /deqp/modules/internal
|
---|
157 | rm -rf /deqp/execserver
|
---|
158 | rm -rf /deqp/framework
|
---|
159 | find . -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-*
|
---|
163 | du -sh ./*
|
---|
164 | rm -rf /VK-GL-CTS
|
---|
165 | popd
|
---|