blob: af6324cad72e6603bd2b7361f02164c191664344 [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
Michel Dänzer163ec5d2019-10-08 19:46:11 +020017 DEBIAN_TAG: "2019-10-22"
18 DEBIAN_ARM64_TAG: "arm64v8-2019-10-22"
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:
Dylan Baker19851c92019-10-23 14:36:19 -070032 - 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änzer163ec5d2019-10-08 19:46:11 +020070debian-10:amd64:
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änzer163ec5d2019-10-08 19:46:11 +020077.use-debian-10:amd64:
Michel Dänzereb86cba2019-10-10 15:27:17 +020078 image: $DEBIAN_IMAGE
79 needs:
Michel Dänzer163ec5d2019-10-08 19:46:11 +020080 - debian-10:amd64
Michel Dänzereb86cba2019-10-10 15:27:17 +020081
Michel Dänzer163ec5d2019-10-08 19:46:11 +020082debian-9:amd64:
83 extends: debian-10:amd64
Michel Dänzer8a199922019-09-06 17:04:47 +020084 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änzer163ec5d2019-10-08 19:46:11 +020090.use-debian-9:amd64:
Michel Dänzer88319f22019-09-18 16:17:01 +020091 image: $STRETCH_IMAGE
92 needs:
Michel Dänzer163ec5d2019-10-08 19:46:11 +020093 - debian-9:amd64
Michel Dänzer88319f22019-09-18 16:17:01 +020094
Michel Dänzer163ec5d2019-10-08 19:46:11 +020095debian-10:arm64:
Michel Dänzere426f402019-09-06 17:35:52 +020096 extends:
97 - .debian@container-ifnot-exists@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +010098 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -070099 variables:
100 DEBIAN_TAG: "$DEBIAN_ARM64_TAG"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200101 DEBIAN_EXEC: 'bash .gitlab-ci/debian-arm64-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +0000102
Eric Engestrom81b98e92019-10-14 23:04:14 +0100103
Eric Engestrom46d23c02019-01-20 11:26:53 +0000104# BUILD
105
Dylan Baker06e46472019-10-23 14:21:31 -0700106# Shared between windows and Linux
107.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100108 extends: .ci-run-policy
Eric Engestroma0f8a072019-09-11 18:51:46 +0100109 stage: build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000110 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700111 when: always
112 paths:
113 - _build/meson-logs/*.txt
114 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200115 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700116 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700117
118# Just Linux
119.build-linux:
120 extends: .build-common
121 cache:
122 key: ${CI_JOB_NAME}
123 paths:
124 - ccache
Michel Dänzere9de19f2019-04-04 18:01:27 +0200125 variables:
126 CCACHE_COMPILERCHECK: "content"
Eric Engestrom23b485c2019-02-12 16:59:27 +0000127 # Use ccache transparently, and print stats before/after
128 before_script:
129 - export PATH="/usr/lib/ccache:$PATH"
130 - export CCACHE_BASEDIR="$PWD"
131 - export CCACHE_DIR="$PWD/ccache"
Michel Dänzer4712fdf2019-10-01 16:00:16 +0200132 - ccache --max-size=1500M
Eric Engestrom23b485c2019-02-12 16:59:27 +0000133 - ccache --zero-stats || true
134 - ccache --show-stats || true
135 after_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700136 # In case the install dir is being saved as artifacts, tar it up
137 # so that symlinks and hardlinks aren't each packed separately in
138 # the zip file.
139 - if [ -d install ]; then
140 tar -cf artifacts/install.tar install;
141 fi
Eric Engestrom23b485c2019-02-12 16:59:27 +0000142 - export CCACHE_DIR="$PWD/ccache"
143 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000144
Dylan Baker19851c92019-10-23 14:36:19 -0700145.build-windows:
146 extends: .build-common
147 tags:
148 - mesa-windows
149 cache:
150 key: ${CI_JOB_NAME}
151 paths:
152 - subprojects/packagecache
153
Eric Engestrom46d23c02019-01-20 11:26:53 +0000154.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100155 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700156 - .build-linux
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200157 - .use-debian-10:amd64
Eric Engestrom23b485c2019-02-12 16:59:27 +0000158 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200159 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000160
Eric Engestrom06b245b2019-01-23 15:46:10 +0000161.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100162 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700163 - .build-linux
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200164 - .use-debian-10:amd64
Eric Engestrom06b245b2019-01-23 15:46:10 +0000165 variables:
166 SCONSFLAGS: "-j4"
167 script:
Michel Dänzer0374aac2019-09-12 11:34:43 +0200168 - .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000169
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200170meson-main:
Michel Dänzere426f402019-09-06 17:35:52 +0200171 extends:
172 - .meson-build
173 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200174 variables:
175 UNWIND: "true"
176 DRI_LOADERS: >
177 -D glx=dri
178 -D gbm=true
179 -D egl=true
180 -D platforms=x11,wayland,drm,surfaceless
181 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
182 GALLIUM_ST: >
183 -D dri3=true
184 -D gallium-extra-hud=true
185 -D gallium-vdpau=true
186 -D gallium-xvmc=true
187 -D gallium-omx=bellagio
188 -D gallium-va=true
189 -D gallium-xa=true
190 -D gallium-nine=true
191 -D gallium-opencl=disabled
192 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
193 LLVM_VERSION: "7"
194 EXTRA_OPTION: >
195 -D osmesa=gallium
196 -D tools=all
197 MESON_SHADERDB: "true"
198 BUILDTYPE: "debugoptimized"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200199
Michel Dänzere5364462019-09-13 11:59:43 +0200200.meson-cross:
201 extends:
202 - .meson-build
Michel Dänzere5364462019-09-13 11:59:43 +0200203 variables:
204 UNWIND: "false"
205 DRI_LOADERS: >
206 -D glx=disabled
207 -D gbm=false
208 -D egl=true
209 -D platforms=surfaceless
210 -D osmesa=none
211 GALLIUM_ST: >
212 -D dri3=false
213 -D gallium-vdpau=false
214 -D gallium-xvmc=false
215 -D gallium-omx=disabled
216 -D gallium-va=false
217 -D gallium-xa=false
218 -D gallium-nine=false
Michel Dänzere5364462019-09-13 11:59:43 +0200219
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200220.meson-arm:
Michel Dänzere5364462019-09-13 11:59:43 +0200221 extends: .meson-cross
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200222 image: $DEBIAN_ARM64_IMAGE
Michel Dänzere5364462019-09-13 11:59:43 +0200223 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200224 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200225 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Michel Dänzere5364462019-09-13 11:59:43 +0200226 EXTRA_OPTION: >
Michel Dänzere5364462019-09-13 11:59:43 +0200227 -D I-love-half-baked-turnips=true
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200228 needs:
229 - debian-10:arm64
230 tags:
231 - aarch64
232
233meson-armhf:
234 extends: .meson-arm
235 variables:
236 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200237 LLVM_VERSION: "7"
Michel Dänzere5364462019-09-13 11:59:43 +0200238
239meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200240 extends:
241 - .meson-arm
242 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200243 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200244 BUILDTYPE: "debugoptimized"
245
Michel Dänzera2cce702019-03-20 15:58:31 +0100246# NOTE: Building SWR is 2x (yes two) times slower than all the other
247# gallium drivers combined.
248# Start this early so that it doesn't limit the total run time.
Eric Engestrom41407c62019-03-08 16:33:07 +0000249#
Eric Anholt030aa6e2019-08-07 14:05:51 -0700250# We also stick the glvnd build here, since we want non-glvnd in
251# meson-main for actual driver CI.
Eric Engestrom1291c682019-04-16 18:06:53 +0200252meson-swr-glvnd:
Michel Dänzera2cce702019-03-20 15:58:31 +0100253 extends: .meson-build
254 variables:
255 UNWIND: "true"
256 DRI_LOADERS: >
Eric Engestrom1291c682019-04-16 18:06:53 +0200257 -D glvnd=true
258 -D egl=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100259 GALLIUM_ST: >
Eric Engestrom41407c62019-03-08 16:33:07 +0000260 -D dri3=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100261 -D gallium-vdpau=false
262 -D gallium-xvmc=false
263 -D gallium-omx=disabled
264 -D gallium-va=false
265 -D gallium-xa=false
Eric Anholt030aa6e2019-08-07 14:05:51 -0700266 -D gallium-nine=false
Michel Dänzera2cce702019-03-20 15:58:31 +0100267 -D gallium-opencl=disabled
Eric Anholt030aa6e2019-08-07 14:05:51 -0700268 GALLIUM_DRIVERS: "swr,iris"
Michel Dänzera2cce702019-03-20 15:58:31 +0100269 LLVM_VERSION: "6.0"
270
271meson-clang:
272 extends: .meson-build
273 variables:
274 UNWIND: "true"
275 DRI_DRIVERS: "auto"
276 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100277 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200278 CC: "ccache clang-8"
279 CXX: "ccache clang++-8"
Michel Dänzera2cce702019-03-20 15:58:31 +0100280
Dylan Baker19851c92019-10-23 14:36:19 -0700281meson-windows:
282 extends:
283 - .build-windows
284 before_script:
285 - $ENV:ARCH = "x86"
286 - $ENV:VERSION = "2019\Community"
287 script:
288 - cmd /C .gitlab-ci\meson-build.bat
289
Michel Dänzer82b30092019-05-03 18:19:25 +0200290scons-swr:
291 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000292 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200293 SCONS_TARGET: "swr=1"
294 SCONS_CHECK_COMMAND: "true"
295 LLVM_VERSION: "6.0"
296
297scons-win64:
298 extends: .scons-build
299 variables:
300 SCONS_TARGET: platform=windows machine=x86_64
301 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000302
Michel Dänzer68977152019-05-03 10:58:48 +0200303meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000304 extends: .meson-build
305 variables:
306 UNWIND: "true"
307 DRI_LOADERS: >
308 -D glx=disabled
309 -D egl=false
310 -D gbm=false
311 GALLIUM_ST: >
312 -D dri3=false
313 -D gallium-vdpau=false
314 -D gallium-xvmc=false
315 -D gallium-omx=disabled
316 -D gallium-va=false
317 -D gallium-xa=false
318 -D gallium-nine=false
319 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200320 script:
321 - export GALLIUM_DRIVERS="r600,radeonsi"
322 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200323 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200324 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200325 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
326 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
327
328meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200329 extends:
330 - meson-clover
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200331 - .use-debian-9:amd64
Michel Dänzer8a199922019-09-06 17:04:47 +0200332 variables:
333 UNWIND: "false"
334 DRI_LOADERS: >
335 -D glx=disabled
336 -D egl=false
337 -D gbm=false
338 -D platforms=drm,surfaceless
339 GALLIUM_DRIVERS: "i915,r600"
340 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200341 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
342 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
343 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000344
Michel Dänzer82b30092019-05-03 18:19:25 +0200345meson-vulkan:
346 extends: .meson-build
347 variables:
348 UNWIND: "false"
349 DRI_LOADERS: >
350 -D glx=disabled
351 -D gbm=false
352 -D egl=false
353 -D platforms=x11,wayland,drm
354 -D osmesa=none
355 GALLIUM_ST: >
356 -D dri3=true
357 -D gallium-vdpau=false
358 -D gallium-xvmc=false
359 -D gallium-omx=disabled
360 -D gallium-va=false
361 -D gallium-xa=false
362 -D gallium-nine=false
363 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200364 -D b_sanitize=undefined
365 -D c_args=-fno-sanitize-recover=all
366 -D cpp_args=-fno-sanitize-recover=all
367 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200368 VULKAN_DRIVERS: intel,amd,freedreno
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200369 LLVM_VERSION: "8"
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200370 EXTRA_OPTION: >
371 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200372
Eric Anholt030aa6e2019-08-07 14:05:51 -0700373# While the main point of this build is testing the i386 cross build,
374# we also use this one to test some other options that are exclusive
375# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700376meson-i386:
377 extends: .meson-cross
378 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100379 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700380 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700381 DRI_DRIVERS: "swrast"
382 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700383 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700384 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700385 -D llvm=false
386 -D osmesa=classic
Eric Anholt11aa32a2019-07-11 12:58:28 -0700387
Dylan Baker449f8312019-10-11 09:04:14 -0700388meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700389 extends: .meson-build
390 variables:
391 UNWIND: "false"
392 DRI_DRIVERS: ""
393 GALLIUM_DRIVERS: "swrast"
394 EXTRA_OPTION: >
395 -Dllvm=false
396 -Dosmesa=gallium
397 --cross-file=.gitlab-ci/x86_64-w64-mingw32
398
Michel Dänzer88e57962019-09-12 11:45:13 +0200399scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000400 extends: .scons-build
401 variables:
402 SCONS_TARGET: "llvm=1"
Dylan Baker54053bc2019-10-21 09:29:23 -0700403 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200404 script:
Dylan Baker54053bc2019-10-21 09:29:23 -0700405 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
Michel Dänzerbaa50242019-09-12 11:38:06 +0200406 - LLVM_VERSION=6.0 .gitlab-ci/scons-build.sh
407 - LLVM_VERSION=7 .gitlab-ci/scons-build.sh
408 - LLVM_VERSION=8 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200409
410scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200411 extends:
412 - scons
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200413 - .use-debian-9:amd64
Michel Dänzerbaa50242019-09-12 11:38:06 +0200414 script:
415 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
416 - LLVM_VERSION=4.0 .gitlab-ci/scons-build.sh
417 - LLVM_VERSION=5.0 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700418
Eric Engestrom3bcd54f2019-10-14 23:53:15 +0100419.test:
420 extends: .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700421 stage: test
Eric Anholt46daaca2019-06-28 16:35:32 -0700422 variables:
423 GIT_STRATEGY: none # testing doesn't build anything from source
Eric Engestrom3bcd54f2019-10-14 23:53:15 +0100424
425.deqp-test:
426 extends:
427 - .test
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200428 - .use-debian-10:amd64
Eric Engestrom3bcd54f2019-10-14 23:53:15 +0100429 variables:
Eric Anholt46daaca2019-06-28 16:35:32 -0700430 DEQP_SKIPS: deqp-default-skips.txt
431 script:
432 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
433 - rm -rf install
434 - tar -xf artifacts/install.tar
435 - ./artifacts/deqp-runner.sh
436 artifacts:
437 when: on_failure
438 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
439 paths:
440 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200441 dependencies:
442 - meson-main
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200443 needs:
444 - meson-main
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200445 - debian-10:amd64
Eric Anholt46daaca2019-06-28 16:35:32 -0700446
447test-llvmpipe-gles2:
448 parallel: 4
449 variables:
450 DEQP_VER: gles2
451 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
452 LIBGL_ALWAYS_SOFTWARE: "true"
453 DEQP_RENDERER_MATCH: "llvmpipe"
454 extends: .deqp-test
Eric Anholt553cd822019-08-09 10:32:40 -0700455
456test-softpipe-gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200457 extends: test-llvmpipe-gles2
Eric Anholt553cd822019-08-09 10:32:40 -0700458 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700459 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700460 DEQP_RENDERER_MATCH: "softpipe"
461 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700462
463# The GLES2 CTS run takes about 8 minutes of CPU time, while GLES3 is
464# 25 minutes. Until we can get its runtime down, just do a partial
465# (every 10 tests) run.
466test-softpipe-gles3-limited:
467 variables:
468 DEQP_VER: gles3
469 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
470 LIBGL_ALWAYS_SOFTWARE: "true"
471 DEQP_RENDERER_MATCH: "softpipe"
472 GALLIUM_DRIVER: "softpipe"
473 CI_NODE_INDEX: 1
474 CI_NODE_TOTAL: 10
475 extends: .deqp-test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700476
Michel Dänzer128581d2019-09-11 18:55:43 +0200477arm64_a630_gles2:
Eric Anholt6f0dc082019-06-28 16:35:32 -0700478 extends: .deqp-test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700479 image: $DEBIAN_ARM64_IMAGE
480 variables:
481 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700482 DEQP_RENDERER_MATCH: "FD630"
483 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
484 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
485 NIR_VALIDATE: 0
486 tags:
487 - mesa-cheza
488 dependencies:
489 - meson-arm64
Michel Dänzerf2b80512019-09-18 16:28:41 +0200490 needs:
491 - meson-arm64
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200492 - debian-10:arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700493
Michel Dänzer128581d2019-09-11 18:55:43 +0200494arm64_a630_gles31:
495 extends: arm64_a630_gles2
496 parallel: 4
Eric Anholt6f0dc082019-06-28 16:35:32 -0700497 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200498 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700499
500arm64_a630_gles3:
501 parallel: 6
Michel Dänzer128581d2019-09-11 18:55:43 +0200502 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700503 variables:
504 DEQP_VER: gles3
505
Michel Dänzer128581d2019-09-11 18:55:43 +0200506arm64_a306_gles2:
Eric Anholt6f0dc082019-06-28 16:35:32 -0700507 parallel: 4
Michel Dänzer128581d2019-09-11 18:55:43 +0200508 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700509 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200510 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
511 DEQP_SKIPS: deqp-default-skips.txt
512 DEQP_RENDERER_MATCH: "FD307"
513 tags:
514 - db410c