blob: d98129241e49805a453035593723131f8ed58b69 [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001# This is the tag of the docker image used for the build jobs. If the
Eric Engestroma0f8a072019-09-11 18:51:46 +01002# image doesn't exist yet, the containers stage generates it.
Eric Engestrom329f5cd2019-01-20 11:21:45 +00003#
4# In order to generate a new image, one should generally change the tag.
5# While removing the image from the registry would also work, that's not
6# recommended except for ephemeral images during development: Replacing
7# an image after a significant amount of time might pull in newer
8# versions of gcc/clang or other packages, which might break the build
9# with older commits using the same tag.
10#
11# After merging a change resulting in generating a new image to the
12# main repository, it's recommended to remove the image from the source
13# repository's container registry, so that the image from the main
14# repository's registry will be used there as well.
Eric Engestrom329f5cd2019-01-20 11:21:45 +000015variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020016 UPSTREAM_REPO: mesa/mesa
Adam Jackson3c553d9cf2019-09-06 09:29:32 +020017 DEBIAN_TAG: "2019-09-11"
Eric Anholt6f0dc082019-06-28 16:35:32 -070018 DEBIAN_ARM64_TAG: "arm64v8-2019-08-09"
Michel Dänzerd00b1c42019-04-02 16:56:54 +020019 DEBIAN_VERSION: stretch-slim
Eric Anholt6f0dc082019-06-28 16:35:32 -070020 DEBIAN_ARM64_VERSION: buster-slim
Michel Dänzerd00b1c42019-04-02 16:56:54 +020021 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
Eric Anholt6f0dc082019-06-28 16:35:32 -070022 DEBIAN_ARM64_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_ARM64_VERSION:$DEBIAN_ARM64_TAG"
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020023
24include:
25 - project: 'wayland/ci-templates'
Eric Anholt6f0dc082019-06-28 16:35:32 -070026 ref: 1f7f57c6
Michel Dänzerd00b1c42019-04-02 16:56:54 +020027 file: '/templates/debian.yml'
Eric Engestrom329f5cd2019-01-20 11:21:45 +000028
Eric Engestrom329f5cd2019-01-20 11:21:45 +000029stages:
Eric Engestroma0f8a072019-09-11 18:51:46 +010030 - containers
31 - build
Eric Anholt46daaca2019-06-28 16:35:32 -070032 - test
Eric Engestrom329f5cd2019-01-20 11:21:45 +000033
34
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000035# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020036.ci-run-policy:
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000037 only:
Michel Dänzerb48e64f2019-04-10 10:33:13 +020038 - branches@mesa/mesa
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000039 - merge_requests
40 - /^ci([-/].*)?$/
Michel Dänzer6140ed32019-03-26 18:39:41 +010041 retry:
42 max: 2
43 when:
44 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000045
Michel Dänzere426f402019-09-06 17:35:52 +020046.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -070047 artifacts:
48 when: always
49 untracked: false
50 paths:
51 # Watch out! Artifacts are relative to the build dir.
52 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
53 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000054
Eric Anholt6f0dc082019-06-28 16:35:32 -070055# Builds the normal CI native and cross-build docker image.
Michel Dänzerd00b1c42019-04-02 16:56:54 +020056debian:
Michel Dänzere426f402019-09-06 17:35:52 +020057 extends:
58 - .debian@container-ifnot-exists
59 - .ci-run-policy
Eric Engestroma0f8a072019-09-11 18:51:46 +010060 stage: containers
Eric Engestrom329f5cd2019-01-20 11:21:45 +000061 variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020062 GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
Michel Dänzerd00b1c42019-04-02 16:56:54 +020063 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +000064
Eric Anholt6f0dc082019-06-28 16:35:32 -070065# Builds a Docker image with the native environment and VK-GL-CTS for testing.
66test-container:arm64:
Michel Dänzere426f402019-09-06 17:35:52 +020067 extends:
68 - .debian@container-ifnot-exists@arm64v8
69 - .ci-run-policy
Eric Engestroma0f8a072019-09-11 18:51:46 +010070 stage: containers
Eric Anholt6f0dc082019-06-28 16:35:32 -070071 variables:
72 DEBIAN_TAG: "$DEBIAN_ARM64_TAG"
73 DEBIAN_VERSION: "$DEBIAN_ARM64_VERSION"
74 GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
75 DEBIAN_EXEC: 'bash .gitlab-ci/debian-test-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +000076
77# BUILD
78
79.build:
Michel Dänzere426f402019-09-06 17:35:52 +020080 extends: .ci-run-policy
Michel Dänzerd00b1c42019-04-02 16:56:54 +020081 image: $DEBIAN_IMAGE
Eric Engestroma0f8a072019-09-11 18:51:46 +010082 stage: build
Michel Dänzera3f34f92019-03-26 18:35:59 +010083 cache:
84 paths:
85 - ccache
Eric Engestrom46d23c02019-01-20 11:26:53 +000086 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -070087 when: always
88 paths:
89 - _build/meson-logs/*.txt
90 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +020091 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -070092 - shader-db
Michel Dänzere9de19f2019-04-04 18:01:27 +020093 variables:
94 CCACHE_COMPILERCHECK: "content"
Eric Engestrom23b485c2019-02-12 16:59:27 +000095 # Use ccache transparently, and print stats before/after
96 before_script:
97 - export PATH="/usr/lib/ccache:$PATH"
98 - export CCACHE_BASEDIR="$PWD"
99 - export CCACHE_DIR="$PWD/ccache"
Eric Engestrom23b485c2019-02-12 16:59:27 +0000100 - ccache --zero-stats || true
101 - ccache --show-stats || true
102 after_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700103 # In case the install dir is being saved as artifacts, tar it up
104 # so that symlinks and hardlinks aren't each packed separately in
105 # the zip file.
106 - if [ -d install ]; then
107 tar -cf artifacts/install.tar install;
108 fi
Eric Engestrom23b485c2019-02-12 16:59:27 +0000109 - export CCACHE_DIR="$PWD/ccache"
110 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000111
112.meson-build:
113 extends: .build
Eric Engestrom23b485c2019-02-12 16:59:27 +0000114 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200115 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000116
Eric Engestrom06b245b2019-01-23 15:46:10 +0000117.scons-build:
118 extends: .build
119 variables:
120 SCONSFLAGS: "-j4"
121 script:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000122 - if test -n "$LLVM_VERSION"; then
123 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
124 fi
Eric Engestrom06b245b2019-01-23 15:46:10 +0000125 - scons $SCONS_TARGET
126 - eval $SCONS_CHECK_COMMAND
127
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200128meson-main:
Michel Dänzere426f402019-09-06 17:35:52 +0200129 extends:
130 - .meson-build
131 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200132 variables:
133 UNWIND: "true"
134 DRI_LOADERS: >
135 -D glx=dri
136 -D gbm=true
137 -D egl=true
138 -D platforms=x11,wayland,drm,surfaceless
139 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
140 GALLIUM_ST: >
141 -D dri3=true
142 -D gallium-extra-hud=true
143 -D gallium-vdpau=true
144 -D gallium-xvmc=true
145 -D gallium-omx=bellagio
146 -D gallium-va=true
147 -D gallium-xa=true
148 -D gallium-nine=true
149 -D gallium-opencl=disabled
150 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
151 LLVM_VERSION: "7"
152 EXTRA_OPTION: >
153 -D osmesa=gallium
154 -D tools=all
155 MESON_SHADERDB: "true"
156 BUILDTYPE: "debugoptimized"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200157
Michel Dänzera2cce702019-03-20 15:58:31 +0100158# NOTE: Building SWR is 2x (yes two) times slower than all the other
159# gallium drivers combined.
160# Start this early so that it doesn't limit the total run time.
Eric Engestrom41407c62019-03-08 16:33:07 +0000161#
Eric Anholt030aa6e2019-08-07 14:05:51 -0700162# We also stick the glvnd build here, since we want non-glvnd in
163# meson-main for actual driver CI.
Eric Engestrom1291c682019-04-16 18:06:53 +0200164meson-swr-glvnd:
Michel Dänzera2cce702019-03-20 15:58:31 +0100165 extends: .meson-build
166 variables:
167 UNWIND: "true"
168 DRI_LOADERS: >
Eric Engestrom1291c682019-04-16 18:06:53 +0200169 -D glvnd=true
170 -D egl=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100171 GALLIUM_ST: >
Eric Engestrom41407c62019-03-08 16:33:07 +0000172 -D dri3=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100173 -D gallium-vdpau=false
174 -D gallium-xvmc=false
175 -D gallium-omx=disabled
176 -D gallium-va=false
177 -D gallium-xa=false
Eric Anholt030aa6e2019-08-07 14:05:51 -0700178 -D gallium-nine=false
Michel Dänzera2cce702019-03-20 15:58:31 +0100179 -D gallium-opencl=disabled
Eric Anholt030aa6e2019-08-07 14:05:51 -0700180 GALLIUM_DRIVERS: "swr,iris"
Michel Dänzera2cce702019-03-20 15:58:31 +0100181 LLVM_VERSION: "6.0"
182
183meson-clang:
184 extends: .meson-build
185 variables:
186 UNWIND: "true"
187 DRI_DRIVERS: "auto"
188 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100189 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200190 CC: "ccache clang-8"
191 CXX: "ccache clang++-8"
Michel Dänzere9de19f2019-04-04 18:01:27 +0200192 before_script:
193 - export CCACHE_BASEDIR="$PWD" CCACHE_DIR="$PWD/ccache"
194 - ccache --zero-stats --show-stats || true
195 # clang++ breaks if it picks up the GCC 8 directory without libstdc++.so
196 - apt-get remove -y libgcc-8-dev
Michel Dänzera2cce702019-03-20 15:58:31 +0100197
Michel Dänzer82b30092019-05-03 18:19:25 +0200198scons-swr:
199 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000200 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200201 SCONS_TARGET: "swr=1"
202 SCONS_CHECK_COMMAND: "true"
203 LLVM_VERSION: "6.0"
204
205scons-win64:
206 extends: .scons-build
207 variables:
208 SCONS_TARGET: platform=windows machine=x86_64
209 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000210
Michel Dänzer68977152019-05-03 10:58:48 +0200211meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000212 extends: .meson-build
213 variables:
214 UNWIND: "true"
215 DRI_LOADERS: >
216 -D glx=disabled
217 -D egl=false
218 -D gbm=false
219 GALLIUM_ST: >
220 -D dri3=false
221 -D gallium-vdpau=false
222 -D gallium-xvmc=false
223 -D gallium-omx=disabled
224 -D gallium-va=false
225 -D gallium-xa=false
226 -D gallium-nine=false
227 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200228 script:
229 - export GALLIUM_DRIVERS="r600,radeonsi"
230 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200231 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200232 - export GALLIUM_DRIVERS="i915,r600"
233 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
234 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
235 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
236 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200237 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000238
Michel Dänzer82b30092019-05-03 18:19:25 +0200239meson-vulkan:
240 extends: .meson-build
241 variables:
242 UNWIND: "false"
243 DRI_LOADERS: >
244 -D glx=disabled
245 -D gbm=false
246 -D egl=false
247 -D platforms=x11,wayland,drm
248 -D osmesa=none
249 GALLIUM_ST: >
250 -D dri3=true
251 -D gallium-vdpau=false
252 -D gallium-xvmc=false
253 -D gallium-omx=disabled
254 -D gallium-va=false
255 -D gallium-xa=false
256 -D gallium-nine=false
257 -D gallium-opencl=disabled
258 VULKAN_DRIVERS: intel,amd,freedreno
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200259 LLVM_VERSION: "8"
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200260 EXTRA_OPTION: >
261 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200262
Eric Anholt11aa32a2019-07-11 12:58:28 -0700263.meson-cross:
Michel Dänzere426f402019-09-06 17:35:52 +0200264 extends:
265 - .meson-build
266 - .ci-deqp-artifacts
Eric Anholt11aa32a2019-07-11 12:58:28 -0700267 variables:
268 UNWIND: "false"
269 DRI_LOADERS: >
270 -D glx=disabled
271 -D gbm=false
Eric Anholt6f0dc082019-06-28 16:35:32 -0700272 -D egl=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700273 -D platforms=surfaceless
274 -D osmesa=none
275 GALLIUM_ST: >
276 -D dri3=false
277 -D gallium-vdpau=false
278 -D gallium-xvmc=false
279 -D gallium-omx=disabled
280 -D gallium-va=false
281 -D gallium-xa=false
282 -D gallium-nine=false
283 -D llvm=false
Eric Anholt11aa32a2019-07-11 12:58:28 -0700284 script:
Eric Anholt11aa32a2019-07-11 12:58:28 -0700285 - .gitlab-ci/meson-build.sh
286
287meson-armhf:
288 extends: .meson-cross
289 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100290 CROSS: armhf
Eric Anholt11aa32a2019-07-11 12:58:28 -0700291 VULKAN_DRIVERS: freedreno
292 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
293 # Disable the tests since we're cross compiling.
294 EXTRA_OPTION: >
295 -D build-tests=false
296 -D I-love-half-baked-turnips=true
297 -D vulkan-overlay-layer=true
298
299meson-arm64:
300 extends: .meson-cross
301 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100302 CROSS: arm64
Eric Anholt11aa32a2019-07-11 12:58:28 -0700303 VULKAN_DRIVERS: freedreno
304 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
305 # Disable the tests since we're cross compiling.
306 EXTRA_OPTION: >
307 -D build-tests=false
308 -D I-love-half-baked-turnips=true
309 -D vulkan-overlay-layer=true
Eric Anholt6f0dc082019-06-28 16:35:32 -0700310 BUILDTYPE: "debugoptimized"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700311
Eric Anholt030aa6e2019-08-07 14:05:51 -0700312# While the main point of this build is testing the i386 cross build,
313# we also use this one to test some other options that are exclusive
314# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700315meson-i386:
316 extends: .meson-cross
317 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100318 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700319 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700320 DRI_DRIVERS: "swrast"
321 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700322 # Disable i386 tests, because u_format_tests gets precision
323 # failures in dxtn unpacking
324 EXTRA_OPTION: >
325 -D build-tests=false
326 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700327 -D llvm=false
328 -D osmesa=classic
Eric Anholt11aa32a2019-07-11 12:58:28 -0700329
Eric Engestromfaf9e402019-02-26 14:40:29 +0000330scons-nollvm:
Eric Engestrom06b245b2019-01-23 15:46:10 +0000331 extends: .scons-build
332 variables:
333 SCONS_TARGET: "llvm=0"
334 SCONS_CHECK_COMMAND: "scons llvm=0 check"
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000335
Eric Engestromfaf9e402019-02-26 14:40:29 +0000336scons-llvm:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000337 extends: .scons-build
338 variables:
339 SCONS_TARGET: "llvm=1"
340 SCONS_CHECK_COMMAND: "scons llvm=1 check"
Adam Jackson3c553d9cf2019-09-06 09:29:32 +0200341 LLVM_VERSION: "3.9"
Eric Anholt46daaca2019-06-28 16:35:32 -0700342
343.deqp-test:
Michel Dänzere426f402019-09-06 17:35:52 +0200344 extends: .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700345 stage: test
346 image: $DEBIAN_IMAGE
347 variables:
348 GIT_STRATEGY: none # testing doesn't build anything from source
349 DEQP_SKIPS: deqp-default-skips.txt
350 script:
351 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
352 - rm -rf install
353 - tar -xf artifacts/install.tar
354 - ./artifacts/deqp-runner.sh
355 artifacts:
356 when: on_failure
357 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
358 paths:
359 - results/
360
361test-llvmpipe-gles2:
362 parallel: 4
363 variables:
364 DEQP_VER: gles2
365 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
366 LIBGL_ALWAYS_SOFTWARE: "true"
367 DEQP_RENDERER_MATCH: "llvmpipe"
368 extends: .deqp-test
369 dependencies:
370 - meson-main
Michel Dänzer8de25ec2019-08-27 11:57:13 +0200371 needs: [meson-main]
Eric Anholt553cd822019-08-09 10:32:40 -0700372
373test-softpipe-gles2:
374 parallel: 4
375 variables:
376 DEQP_VER: gles2
377 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
378 LIBGL_ALWAYS_SOFTWARE: "true"
379 DEQP_RENDERER_MATCH: "softpipe"
380 GALLIUM_DRIVER: "softpipe"
381 extends: .deqp-test
382 dependencies:
383 - meson-main
Michel Dänzer8de25ec2019-08-27 11:57:13 +0200384 needs: [meson-main]
Eric Anholt553cd822019-08-09 10:32:40 -0700385
386# The GLES2 CTS run takes about 8 minutes of CPU time, while GLES3 is
387# 25 minutes. Until we can get its runtime down, just do a partial
388# (every 10 tests) run.
389test-softpipe-gles3-limited:
390 variables:
391 DEQP_VER: gles3
392 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
393 LIBGL_ALWAYS_SOFTWARE: "true"
394 DEQP_RENDERER_MATCH: "softpipe"
395 GALLIUM_DRIVER: "softpipe"
396 CI_NODE_INDEX: 1
397 CI_NODE_TOTAL: 10
398 extends: .deqp-test
399 dependencies:
400 - meson-main
Michel Dänzer8de25ec2019-08-27 11:57:13 +0200401 needs: [meson-main]
Eric Anholt6f0dc082019-06-28 16:35:32 -0700402
403arm64_a306_gles2:
404 extends: .deqp-test
405 parallel: 4
406 image: $DEBIAN_ARM64_IMAGE
407 variables:
408 DEQP_VER: gles2
409 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
410 NIR_VALIDATE: 0
411 DEQP_RENDERER_MATCH: "FD307"
412 tags:
413 - db410c
414 dependencies:
415 - meson-arm64
Michel Dänzer0173e9b2019-09-13 10:56:54 +0200416 needs: [ meson-arm64 ]
Eric Anholt6f0dc082019-06-28 16:35:32 -0700417
418.cheza-test:
419 image: $DEBIAN_ARM64_IMAGE
420 extends: .deqp-test
421 variables:
422 DEQP_RENDERER_MATCH: "FD630"
423 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
424 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
425 NIR_VALIDATE: 0
426 tags:
427 - mesa-cheza
428 dependencies:
429 - meson-arm64
430 needs: [ meson-arm64 ]
431
432arm64_a630_gles2:
433 extends: .cheza-test
434 variables:
435 DEQP_VER: gles2
436
437arm64_a630_gles3:
438 parallel: 6
439 extends: .cheza-test
440 variables:
441 DEQP_VER: gles3
442
443arm64_a630_gles31:
444 parallel: 4
445 extends: .cheza-test
446 variables:
447 DEQP_VER: gles31