blob: ee611fd3982234c84a430ca16b7057cb3314c9cf [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
Dylan Baker6e375ff2019-10-11 09:21:17 -070017 DEBIAN_TAG: "2019-10-16"
Eric Anholt6f0dc082019-06-28 16:35:32 -070018 DEBIAN_ARM64_TAG: "arm64v8-2019-08-09"
Michel Dänzer8a199922019-09-06 17:04:47 +020019 STRETCH_TAG: "2019-09-18"
20 DEBIAN_VERSION: buster-slim
21 STRETCH_VERSION: stretch-slim
Michel Dänzerd00b1c42019-04-02 16:56:54 +020022 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
Michel Dänzer8a199922019-09-06 17:04:47 +020023 DEBIAN_ARM64_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_ARM64_TAG"
24 STRETCH_IMAGE: "$CI_REGISTRY_IMAGE/debian/$STRETCH_VERSION:$STRETCH_TAG"
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020025
26include:
27 - project: 'wayland/ci-templates'
Michel Dänzer2259b452019-09-06 17:01:50 +020028 ref: 1f7f57c64ff4ebbf7292e3b7a13600518b8cb24c
Michel Dänzerd00b1c42019-04-02 16:56:54 +020029 file: '/templates/debian.yml'
Eric Engestrom329f5cd2019-01-20 11:21:45 +000030
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020031include:
Tomeu Vizoso555c0de2019-09-18 16:43:30 +020032 - local: '/.gitlab-ci/lava-gitlab-ci.yml'
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020033
Eric Engestrom329f5cd2019-01-20 11:21:45 +000034stages:
Eric Engestrom81b98e92019-10-14 23:04:14 +010035 - container
Eric Engestroma0f8a072019-09-11 18:51:46 +010036 - build
Eric Anholt46daaca2019-06-28 16:35:32 -070037 - test
Eric Engestrom329f5cd2019-01-20 11:21:45 +000038
39
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000040# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020041.ci-run-policy:
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000042 only:
Michel Dänzerb48e64f2019-04-10 10:33:13 +020043 - branches@mesa/mesa
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000044 - merge_requests
45 - /^ci([-/].*)?$/
Michel Dänzer6140ed32019-03-26 18:39:41 +010046 retry:
47 max: 2
48 when:
49 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000050
Michel Dänzere426f402019-09-06 17:35:52 +020051.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -070052 artifacts:
53 when: always
54 untracked: false
55 paths:
56 # Watch out! Artifacts are relative to the build dir.
57 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
58 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000059
Michel Dänzer8a199922019-09-06 17:04:47 +020060# Build the normal CI native and cross-build docker images.
61
Eric Engestrom81b98e92019-10-14 23:04:14 +010062.container:
63 stage: container
64 extends:
65 - .ci-run-policy
66 variables:
67 # no need to pull the whole repo to build the container image
68 GIT_STRATEGY: none
69
Michel Dänzer8a199922019-09-06 17:04:47 +020070debian-10:
Michel Dänzere426f402019-09-06 17:35:52 +020071 extends:
72 - .debian@container-ifnot-exists
Eric Engestrom81b98e92019-10-14 23:04:14 +010073 - .container
Eric Engestrom329f5cd2019-01-20 11:21:45 +000074 variables:
Michel Dänzerd00b1c42019-04-02 16:56:54 +020075 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +000076
Michel Dänzereb86cba2019-10-10 15:27:17 +020077.use-debian-10:
Michel Dänzereb86cba2019-10-10 15:27:17 +020078 image: $DEBIAN_IMAGE
79 needs:
80 - debian-10
81
Michel Dänzer8a199922019-09-06 17:04:47 +020082debian-9:
83 extends: debian-10
84 variables:
85 DEBIAN_TAG: $STRETCH_TAG
86 DEBIAN_VERSION: $STRETCH_VERSION
87 DEBIAN_IMAGE: $STRETCH_IMAGE
88 DEBIAN_EXEC: 'bash .gitlab-ci/debian-stretch-install.sh'
89
Michel Dänzer88319f22019-09-18 16:17:01 +020090.use-debian-9:
91 image: $STRETCH_IMAGE
92 needs:
93 - debian-9
94
Eric Anholt6f0dc082019-06-28 16:35:32 -070095# Builds a Docker image with the native environment and VK-GL-CTS for testing.
96test-container:arm64:
Michel Dänzere426f402019-09-06 17:35:52 +020097 extends:
98 - .debian@container-ifnot-exists@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +010099 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700100 variables:
101 DEBIAN_TAG: "$DEBIAN_ARM64_TAG"
Eric Anholt6f0dc082019-06-28 16:35:32 -0700102 DEBIAN_EXEC: 'bash .gitlab-ci/debian-test-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +0000103
Eric Engestrom81b98e92019-10-14 23:04:14 +0100104
Eric Engestrom46d23c02019-01-20 11:26:53 +0000105# BUILD
106
107.build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100108 extends: .ci-run-policy
Eric Engestroma0f8a072019-09-11 18:51:46 +0100109 stage: build
Michel Dänzera3f34f92019-03-26 18:35:59 +0100110 cache:
Michel Dänzer4712fdf2019-10-01 16:00:16 +0200111 key: ${CI_JOB_NAME}
Michel Dänzera3f34f92019-03-26 18:35:59 +0100112 paths:
113 - ccache
Eric Engestrom46d23c02019-01-20 11:26:53 +0000114 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700115 when: always
116 paths:
117 - _build/meson-logs/*.txt
118 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200119 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700120 - shader-db
Michel Dänzere9de19f2019-04-04 18:01:27 +0200121 variables:
122 CCACHE_COMPILERCHECK: "content"
Eric Engestrom23b485c2019-02-12 16:59:27 +0000123 # Use ccache transparently, and print stats before/after
124 before_script:
125 - export PATH="/usr/lib/ccache:$PATH"
126 - export CCACHE_BASEDIR="$PWD"
127 - export CCACHE_DIR="$PWD/ccache"
Michel Dänzer4712fdf2019-10-01 16:00:16 +0200128 - ccache --max-size=1500M
Eric Engestrom23b485c2019-02-12 16:59:27 +0000129 - ccache --zero-stats || true
130 - ccache --show-stats || true
131 after_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700132 # In case the install dir is being saved as artifacts, tar it up
133 # so that symlinks and hardlinks aren't each packed separately in
134 # the zip file.
135 - if [ -d install ]; then
136 tar -cf artifacts/install.tar install;
137 fi
Eric Engestrom23b485c2019-02-12 16:59:27 +0000138 - export CCACHE_DIR="$PWD/ccache"
139 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000140
141.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100142 extends:
143 - .build
144 - .use-debian-10
Eric Engestrom23b485c2019-02-12 16:59:27 +0000145 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200146 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000147
Eric Engestrom06b245b2019-01-23 15:46:10 +0000148.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100149 extends:
150 - .build
151 - .use-debian-10
Eric Engestrom06b245b2019-01-23 15:46:10 +0000152 variables:
153 SCONSFLAGS: "-j4"
154 script:
Michel Dänzer0374aac2019-09-12 11:34:43 +0200155 - .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000156
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200157meson-main:
Michel Dänzere426f402019-09-06 17:35:52 +0200158 extends:
159 - .meson-build
160 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200161 variables:
162 UNWIND: "true"
163 DRI_LOADERS: >
164 -D glx=dri
165 -D gbm=true
166 -D egl=true
167 -D platforms=x11,wayland,drm,surfaceless
168 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
169 GALLIUM_ST: >
170 -D dri3=true
171 -D gallium-extra-hud=true
172 -D gallium-vdpau=true
173 -D gallium-xvmc=true
174 -D gallium-omx=bellagio
175 -D gallium-va=true
176 -D gallium-xa=true
177 -D gallium-nine=true
178 -D gallium-opencl=disabled
179 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
180 LLVM_VERSION: "7"
181 EXTRA_OPTION: >
182 -D osmesa=gallium
183 -D tools=all
184 MESON_SHADERDB: "true"
185 BUILDTYPE: "debugoptimized"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200186
Michel Dänzere5364462019-09-13 11:59:43 +0200187.meson-cross:
188 extends:
189 - .meson-build
190 - .ci-deqp-artifacts
191 variables:
192 UNWIND: "false"
193 DRI_LOADERS: >
194 -D glx=disabled
195 -D gbm=false
196 -D egl=true
197 -D platforms=surfaceless
198 -D osmesa=none
199 GALLIUM_ST: >
200 -D dri3=false
201 -D gallium-vdpau=false
202 -D gallium-xvmc=false
203 -D gallium-omx=disabled
204 -D gallium-va=false
205 -D gallium-xa=false
206 -D gallium-nine=false
207 -D llvm=false
Michel Dänzere5364462019-09-13 11:59:43 +0200208
209meson-armhf:
210 extends: .meson-cross
211 variables:
212 CROSS: armhf
213 VULKAN_DRIVERS: freedreno
214 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
215 # Disable the tests since we're cross compiling.
216 EXTRA_OPTION: >
217 -D build-tests=false
218 -D I-love-half-baked-turnips=true
219 -D vulkan-overlay-layer=true
220
221meson-arm64:
222 extends: meson-armhf
223 variables:
224 CROSS: arm64
225 BUILDTYPE: "debugoptimized"
226
Michel Dänzera2cce702019-03-20 15:58:31 +0100227# NOTE: Building SWR is 2x (yes two) times slower than all the other
228# gallium drivers combined.
229# Start this early so that it doesn't limit the total run time.
Eric Engestrom41407c62019-03-08 16:33:07 +0000230#
Eric Anholt030aa6e2019-08-07 14:05:51 -0700231# We also stick the glvnd build here, since we want non-glvnd in
232# meson-main for actual driver CI.
Eric Engestrom1291c682019-04-16 18:06:53 +0200233meson-swr-glvnd:
Michel Dänzera2cce702019-03-20 15:58:31 +0100234 extends: .meson-build
235 variables:
236 UNWIND: "true"
237 DRI_LOADERS: >
Eric Engestrom1291c682019-04-16 18:06:53 +0200238 -D glvnd=true
239 -D egl=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100240 GALLIUM_ST: >
Eric Engestrom41407c62019-03-08 16:33:07 +0000241 -D dri3=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100242 -D gallium-vdpau=false
243 -D gallium-xvmc=false
244 -D gallium-omx=disabled
245 -D gallium-va=false
246 -D gallium-xa=false
Eric Anholt030aa6e2019-08-07 14:05:51 -0700247 -D gallium-nine=false
Michel Dänzera2cce702019-03-20 15:58:31 +0100248 -D gallium-opencl=disabled
Eric Anholt030aa6e2019-08-07 14:05:51 -0700249 GALLIUM_DRIVERS: "swr,iris"
Michel Dänzera2cce702019-03-20 15:58:31 +0100250 LLVM_VERSION: "6.0"
251
252meson-clang:
253 extends: .meson-build
254 variables:
255 UNWIND: "true"
256 DRI_DRIVERS: "auto"
257 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100258 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200259 CC: "ccache clang-8"
260 CXX: "ccache clang++-8"
Michel Dänzera2cce702019-03-20 15:58:31 +0100261
Michel Dänzer82b30092019-05-03 18:19:25 +0200262scons-swr:
263 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000264 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200265 SCONS_TARGET: "swr=1"
266 SCONS_CHECK_COMMAND: "true"
267 LLVM_VERSION: "6.0"
268
269scons-win64:
270 extends: .scons-build
271 variables:
272 SCONS_TARGET: platform=windows machine=x86_64
273 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000274
Michel Dänzer68977152019-05-03 10:58:48 +0200275meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000276 extends: .meson-build
277 variables:
278 UNWIND: "true"
279 DRI_LOADERS: >
280 -D glx=disabled
281 -D egl=false
282 -D gbm=false
283 GALLIUM_ST: >
284 -D dri3=false
285 -D gallium-vdpau=false
286 -D gallium-xvmc=false
287 -D gallium-omx=disabled
288 -D gallium-va=false
289 -D gallium-xa=false
290 -D gallium-nine=false
291 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200292 script:
293 - export GALLIUM_DRIVERS="r600,radeonsi"
294 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200295 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200296 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200297 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
298 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
299
300meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200301 extends:
302 - meson-clover
303 - .use-debian-9
Michel Dänzer8a199922019-09-06 17:04:47 +0200304 variables:
305 UNWIND: "false"
306 DRI_LOADERS: >
307 -D glx=disabled
308 -D egl=false
309 -D gbm=false
310 -D platforms=drm,surfaceless
311 GALLIUM_DRIVERS: "i915,r600"
312 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200313 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
314 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
315 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000316
Michel Dänzer82b30092019-05-03 18:19:25 +0200317meson-vulkan:
318 extends: .meson-build
319 variables:
320 UNWIND: "false"
321 DRI_LOADERS: >
322 -D glx=disabled
323 -D gbm=false
324 -D egl=false
325 -D platforms=x11,wayland,drm
326 -D osmesa=none
327 GALLIUM_ST: >
328 -D dri3=true
329 -D gallium-vdpau=false
330 -D gallium-xvmc=false
331 -D gallium-omx=disabled
332 -D gallium-va=false
333 -D gallium-xa=false
334 -D gallium-nine=false
335 -D gallium-opencl=disabled
336 VULKAN_DRIVERS: intel,amd,freedreno
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200337 LLVM_VERSION: "8"
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200338 EXTRA_OPTION: >
339 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200340
Eric Anholt030aa6e2019-08-07 14:05:51 -0700341# While the main point of this build is testing the i386 cross build,
342# we also use this one to test some other options that are exclusive
343# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700344meson-i386:
345 extends: .meson-cross
346 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100347 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700348 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700349 DRI_DRIVERS: "swrast"
350 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700351 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700352 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700353 -D llvm=false
354 -D osmesa=classic
Eric Anholt11aa32a2019-07-11 12:58:28 -0700355
Dylan Baker449f8312019-10-11 09:04:14 -0700356meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700357 extends: .meson-build
358 variables:
359 UNWIND: "false"
360 DRI_DRIVERS: ""
361 GALLIUM_DRIVERS: "swrast"
362 EXTRA_OPTION: >
363 -Dllvm=false
364 -Dosmesa=gallium
365 --cross-file=.gitlab-ci/x86_64-w64-mingw32
366
Michel Dänzer88e57962019-09-12 11:45:13 +0200367scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000368 extends: .scons-build
369 variables:
370 SCONS_TARGET: "llvm=1"
371 SCONS_CHECK_COMMAND: "scons llvm=1 check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200372 script:
Michel Dänzer88e57962019-09-12 11:45:13 +0200373 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check" .gitlab-ci/scons-build.sh
Michel Dänzerbaa50242019-09-12 11:38:06 +0200374 - LLVM_VERSION=6.0 .gitlab-ci/scons-build.sh
375 - LLVM_VERSION=7 .gitlab-ci/scons-build.sh
376 - LLVM_VERSION=8 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200377
378scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200379 extends:
380 - scons
381 - .use-debian-9
Michel Dänzerbaa50242019-09-12 11:38:06 +0200382 script:
383 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
384 - LLVM_VERSION=4.0 .gitlab-ci/scons-build.sh
385 - LLVM_VERSION=5.0 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700386
Eric Engestrom3bcd54f2019-10-14 23:53:15 +0100387.test:
388 extends: .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700389 stage: test
Eric Anholt46daaca2019-06-28 16:35:32 -0700390 variables:
391 GIT_STRATEGY: none # testing doesn't build anything from source
Eric Engestrom3bcd54f2019-10-14 23:53:15 +0100392
393.deqp-test:
394 extends:
395 - .test
396 - .use-debian-10
397 variables:
Eric Anholt46daaca2019-06-28 16:35:32 -0700398 DEQP_SKIPS: deqp-default-skips.txt
399 script:
400 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
401 - rm -rf install
402 - tar -xf artifacts/install.tar
403 - ./artifacts/deqp-runner.sh
404 artifacts:
405 when: on_failure
406 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
407 paths:
408 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200409 dependencies:
410 - meson-main
411 needs: [meson-main]
Eric Anholt46daaca2019-06-28 16:35:32 -0700412
413test-llvmpipe-gles2:
414 parallel: 4
415 variables:
416 DEQP_VER: gles2
417 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
418 LIBGL_ALWAYS_SOFTWARE: "true"
419 DEQP_RENDERER_MATCH: "llvmpipe"
420 extends: .deqp-test
Eric Anholt553cd822019-08-09 10:32:40 -0700421
422test-softpipe-gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200423 extends: test-llvmpipe-gles2
Eric Anholt553cd822019-08-09 10:32:40 -0700424 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700425 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700426 DEQP_RENDERER_MATCH: "softpipe"
427 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700428
429# The GLES2 CTS run takes about 8 minutes of CPU time, while GLES3 is
430# 25 minutes. Until we can get its runtime down, just do a partial
431# (every 10 tests) run.
432test-softpipe-gles3-limited:
433 variables:
434 DEQP_VER: gles3
435 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
436 LIBGL_ALWAYS_SOFTWARE: "true"
437 DEQP_RENDERER_MATCH: "softpipe"
438 GALLIUM_DRIVER: "softpipe"
439 CI_NODE_INDEX: 1
440 CI_NODE_TOTAL: 10
441 extends: .deqp-test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700442
Michel Dänzer128581d2019-09-11 18:55:43 +0200443arm64_a630_gles2:
Eric Anholt6f0dc082019-06-28 16:35:32 -0700444 extends: .deqp-test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700445 image: $DEBIAN_ARM64_IMAGE
446 variables:
447 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700448 DEQP_RENDERER_MATCH: "FD630"
449 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
450 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
451 NIR_VALIDATE: 0
452 tags:
453 - mesa-cheza
454 dependencies:
455 - meson-arm64
Michel Dänzerf2b80512019-09-18 16:28:41 +0200456 needs:
457 - meson-arm64
458 - test-container:arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700459
Michel Dänzer128581d2019-09-11 18:55:43 +0200460arm64_a630_gles31:
461 extends: arm64_a630_gles2
462 parallel: 4
Eric Anholt6f0dc082019-06-28 16:35:32 -0700463 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200464 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700465
466arm64_a630_gles3:
467 parallel: 6
Michel Dänzer128581d2019-09-11 18:55:43 +0200468 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700469 variables:
470 DEQP_VER: gles3
471
Michel Dänzer128581d2019-09-11 18:55:43 +0200472arm64_a306_gles2:
Eric Anholt6f0dc082019-06-28 16:35:32 -0700473 parallel: 4
Michel Dänzer128581d2019-09-11 18:55:43 +0200474 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700475 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200476 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
477 DEQP_SKIPS: deqp-default-skips.txt
478 DEQP_RENDERER_MATCH: "FD307"
479 tags:
480 - db410c