ci: Expand the freedreno blit skip regex to cover more cases.
[mesa.git] / .gitlab-ci.yml
1 # This is the tag of the docker image used for the build jobs. If the
2 # image doesn't exist yet, the containers stage generates it.
3 #
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.
15 variables:
16 UPSTREAM_REPO: mesa/mesa
17 DEBIAN_TAG: "amd64-2019-11-13-2"
18 DEBIAN_TEST_TAG: "amd64-test-2019-11-12-2"
19 DEBIAN_ARM64_TAG: "arm64v8-2019-11-13"
20 DEBIAN_ARM64_TEST_TAG: "arm64v8-test-2019-11-12-2"
21 STRETCH_TAG: "2019-09-18"
22 DEBIAN_VERSION: buster-slim
23 STRETCH_VERSION: stretch-slim
24 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
25 DEBIAN_TEST_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TEST_TAG"
26 DEBIAN_ARM64_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_ARM64_TAG"
27 DEBIAN_ARM64_TEST_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_ARM64_TEST_TAG"
28 STRETCH_IMAGE: "$CI_REGISTRY_IMAGE/debian/$STRETCH_VERSION:$STRETCH_TAG"
29
30 include:
31 - project: 'wayland/ci-templates'
32 ref: 1f7f57c64ff4ebbf7292e3b7a13600518b8cb24c
33 file: '/templates/debian.yml'
34
35 include:
36 - local: '.gitlab-ci/lava-gitlab-ci.yml'
37
38 stages:
39 - container
40 - build
41 - test
42
43
44 # When to automatically run the CI
45 .ci-run-policy:
46 only:
47 refs:
48 - branches@mesa/mesa
49 - merge_requests
50 - /^ci([-/].*)?$/
51 changes:
52 - VERSION
53 - bin/**/*
54 # GitLab CI
55 - .gitlab-ci.yml
56 - .gitlab-ci/**/*
57 # Meson
58 - meson*
59 - build-support/**/*
60 - subprojects/**/*
61 # SCons
62 - SConstruct
63 - scons/**/*
64 - common.py
65 # Source code
66 - include/**/*
67 - src/**/*
68 retry:
69 max: 2
70 when:
71 - runner_system_failure
72
73 .ci-deqp-artifacts:
74 artifacts:
75 when: always
76 untracked: false
77 paths:
78 # Watch out! Artifacts are relative to the build dir.
79 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
80 - artifacts
81
82 # Build the normal CI native and cross-build docker images.
83
84 .container:
85 stage: container
86 extends:
87 - .ci-run-policy
88 variables:
89 # no need to pull the whole repo to build the container image
90 GIT_STRATEGY: none
91
92 debian-10:amd64:
93 extends:
94 - .debian@container-ifnot-exists
95 - .container
96 variables:
97 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
98
99 .use-debian-10:amd64:
100 image: $DEBIAN_IMAGE
101 needs:
102 - debian-10:amd64
103
104 debian-10-test:amd64:
105 extends: debian-10:amd64
106 variables:
107 DEBIAN_TAG: "$DEBIAN_TEST_TAG"
108 DEBIAN_EXEC: 'bash .gitlab-ci/debian-test-install.sh'
109
110 debian-9:amd64:
111 extends: debian-10:amd64
112 variables:
113 DEBIAN_TAG: $STRETCH_TAG
114 DEBIAN_VERSION: $STRETCH_VERSION
115 DEBIAN_IMAGE: $STRETCH_IMAGE
116 DEBIAN_EXEC: 'bash .gitlab-ci/debian-stretch-install.sh'
117
118 .use-debian-9:amd64:
119 image: $STRETCH_IMAGE
120 needs:
121 - debian-9:amd64
122
123 debian-10:arm64:
124 extends:
125 - .debian@container-ifnot-exists@arm64v8
126 - .container
127 variables:
128 DEBIAN_TAG: "$DEBIAN_ARM64_TAG"
129 DEBIAN_EXEC: 'bash .gitlab-ci/debian-arm64-install.sh'
130
131 debian-10-test:arm64:
132 extends:
133 - .debian@container-ifnot-exists@arm64v8
134 - .container
135 variables:
136 DEBIAN_TAG: "$DEBIAN_ARM64_TEST_TAG"
137 DEBIAN_EXEC: 'bash .gitlab-ci/debian-arm64-test-install.sh'
138
139
140 # BUILD
141
142 # Shared between windows and Linux
143 .build-common:
144 extends: .ci-run-policy
145 stage: build
146 artifacts:
147 when: always
148 paths:
149 - _build/meson-logs/*.txt
150 # scons:
151 - build/*/config.log
152 - shader-db
153
154 # Just Linux
155 .build-linux:
156 extends: .build-common
157 cache:
158 key: ${CI_JOB_NAME}
159 paths:
160 - ccache
161 variables:
162 CCACHE_COMPILERCHECK: "content"
163 # Use ccache transparently, and print stats before/after
164 before_script:
165 - export PATH="/usr/lib/ccache:$PATH"
166 - export CCACHE_BASEDIR="$PWD"
167 - export CCACHE_DIR="$PWD/ccache"
168 - ccache --max-size=1500M
169 - ccache --zero-stats || true
170 - ccache --show-stats || true
171 after_script:
172 - export CCACHE_DIR="$PWD/ccache"
173 - ccache --show-stats
174
175 .build-windows:
176 extends: .build-common
177 tags:
178 - mesa-windows
179 cache:
180 key: ${CI_JOB_NAME}
181 paths:
182 - subprojects/packagecache
183
184 .meson-build:
185 extends:
186 - .build-linux
187 - .use-debian-10:amd64
188 script:
189 - .gitlab-ci/meson-build.sh
190
191 .scons-build:
192 extends:
193 - .build-linux
194 - .use-debian-10:amd64
195 variables:
196 SCONSFLAGS: "-j4"
197 script:
198 - .gitlab-ci/scons-build.sh
199
200 meson-main:
201 extends:
202 - .meson-build
203 - .ci-deqp-artifacts
204 variables:
205 UNWIND: "true"
206 DRI_LOADERS: >
207 -D glx=dri
208 -D gbm=true
209 -D egl=true
210 -D platforms=x11,wayland,drm,surfaceless
211 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
212 GALLIUM_ST: >
213 -D dri3=true
214 -D gallium-extra-hud=true
215 -D gallium-vdpau=true
216 -D gallium-xvmc=true
217 -D gallium-omx=bellagio
218 -D gallium-va=true
219 -D gallium-xa=true
220 -D gallium-nine=true
221 -D gallium-opencl=disabled
222 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
223 LLVM_VERSION: "7"
224 EXTRA_OPTION: >
225 -D osmesa=gallium
226 -D tools=all
227 BUILDTYPE: "debugoptimized"
228 script:
229 - .gitlab-ci/meson-build.sh
230 - .gitlab-ci/run-shader-db.sh
231 - .gitlab-ci/prepare-artifacts.sh
232
233 .meson-cross:
234 extends:
235 - .meson-build
236 variables:
237 UNWIND: "false"
238 DRI_LOADERS: >
239 -D glx=disabled
240 -D gbm=false
241 -D egl=true
242 -D platforms=surfaceless
243 -D osmesa=none
244 GALLIUM_ST: >
245 -D dri3=false
246 -D gallium-vdpau=false
247 -D gallium-xvmc=false
248 -D gallium-omx=disabled
249 -D gallium-va=false
250 -D gallium-xa=false
251 -D gallium-nine=false
252
253 .meson-arm:
254 extends: .meson-cross
255 image: $DEBIAN_ARM64_IMAGE
256 variables:
257 VULKAN_DRIVERS: freedreno
258 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
259 EXTRA_OPTION: >
260 -D I-love-half-baked-turnips=true
261 needs:
262 - debian-10:arm64
263 tags:
264 - aarch64
265
266 meson-armhf:
267 extends: .meson-arm
268 variables:
269 CROSS: armhf
270 LLVM_VERSION: "7"
271
272 meson-arm64:
273 extends:
274 - .meson-arm
275 - .ci-deqp-artifacts
276 variables:
277 BUILDTYPE: "debugoptimized"
278 VULKAN_DRIVERS: "freedreno,amd"
279 script:
280 - .gitlab-ci/meson-build.sh
281 - .gitlab-ci/prepare-artifacts.sh
282
283 # NOTE: Building SWR is 2x (yes two) times slower than all the other
284 # gallium drivers combined.
285 # Start this early so that it doesn't limit the total run time.
286 #
287 # We also stick the glvnd build here, since we want non-glvnd in
288 # meson-main for actual driver CI.
289 meson-swr-glvnd:
290 extends: .meson-build
291 variables:
292 UNWIND: "true"
293 DRI_LOADERS: >
294 -D glvnd=true
295 -D egl=true
296 GALLIUM_ST: >
297 -D dri3=true
298 -D gallium-vdpau=false
299 -D gallium-xvmc=false
300 -D gallium-omx=disabled
301 -D gallium-va=false
302 -D gallium-xa=false
303 -D gallium-nine=false
304 -D gallium-opencl=disabled
305 GALLIUM_DRIVERS: "swr,iris"
306 LLVM_VERSION: "6.0"
307
308 meson-clang:
309 extends: .meson-build
310 variables:
311 UNWIND: "true"
312 DRI_DRIVERS: "auto"
313 GALLIUM_DRIVERS: "auto"
314 VULKAN_DRIVERS: intel,amd,freedreno
315 CC: "ccache clang-8"
316 CXX: "ccache clang++-8"
317
318 .meson-windows:
319 extends:
320 - .build-windows
321 before_script:
322 - $ENV:ARCH = "x86"
323 - $ENV:VERSION = "2019\Community"
324 script:
325 - cmd /C .gitlab-ci\meson-build.bat
326
327 scons-swr:
328 extends: .scons-build
329 variables:
330 SCONS_TARGET: "swr=1"
331 SCONS_CHECK_COMMAND: "true"
332 LLVM_VERSION: "6.0"
333
334 scons-win64:
335 extends: .scons-build
336 variables:
337 SCONS_TARGET: platform=windows machine=x86_64
338 SCONS_CHECK_COMMAND: "true"
339
340 meson-clover:
341 extends: .meson-build
342 variables:
343 UNWIND: "true"
344 DRI_LOADERS: >
345 -D glx=disabled
346 -D egl=false
347 -D gbm=false
348 GALLIUM_ST: >
349 -D dri3=false
350 -D gallium-vdpau=false
351 -D gallium-xvmc=false
352 -D gallium-omx=disabled
353 -D gallium-va=false
354 -D gallium-xa=false
355 -D gallium-nine=false
356 -D gallium-opencl=icd
357 script:
358 - export GALLIUM_DRIVERS="r600,radeonsi"
359 - .gitlab-ci/meson-build.sh
360 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
361 - export GALLIUM_DRIVERS="i915,r600"
362 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
363 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
364
365 meson-clover-old-llvm:
366 extends:
367 - meson-clover
368 - .use-debian-9:amd64
369 variables:
370 UNWIND: "false"
371 DRI_LOADERS: >
372 -D glx=disabled
373 -D egl=false
374 -D gbm=false
375 -D platforms=drm,surfaceless
376 GALLIUM_DRIVERS: "i915,r600"
377 script:
378 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
379 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
380 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
381
382 meson-vulkan:
383 extends: .meson-build
384 variables:
385 UNWIND: "false"
386 DRI_LOADERS: >
387 -D glx=disabled
388 -D gbm=false
389 -D egl=false
390 -D platforms=x11,wayland,drm
391 -D osmesa=none
392 GALLIUM_ST: >
393 -D dri3=true
394 -D gallium-vdpau=false
395 -D gallium-xvmc=false
396 -D gallium-omx=disabled
397 -D gallium-va=false
398 -D gallium-xa=false
399 -D gallium-nine=false
400 -D gallium-opencl=disabled
401 -D b_sanitize=undefined
402 -D c_args=-fno-sanitize-recover=all
403 -D cpp_args=-fno-sanitize-recover=all
404 UBSAN_OPTIONS: "print_stacktrace=1"
405 VULKAN_DRIVERS: intel,amd,freedreno
406 LLVM_VERSION: "8"
407 EXTRA_OPTION: >
408 -D vulkan-overlay-layer=true
409
410 # While the main point of this build is testing the i386 cross build,
411 # we also use this one to test some other options that are exclusive
412 # with meson-main's choices (classic swrast and osmesa)
413 meson-i386:
414 extends: .meson-cross
415 variables:
416 CROSS: i386
417 VULKAN_DRIVERS: intel
418 DRI_DRIVERS: "swrast"
419 GALLIUM_DRIVERS: "iris"
420 EXTRA_OPTION: >
421 -D vulkan-overlay-layer=true
422 -D llvm=false
423 -D osmesa=classic
424
425 meson-mingw32-x86_64:
426 extends: .meson-build
427 variables:
428 UNWIND: "false"
429 DRI_DRIVERS: ""
430 GALLIUM_DRIVERS: "swrast"
431 EXTRA_OPTION: >
432 -Dllvm=false
433 -Dosmesa=gallium
434 --cross-file=.gitlab-ci/x86_64-w64-mingw32
435
436 scons:
437 extends: .scons-build
438 variables:
439 SCONS_TARGET: "llvm=1"
440 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
441 script:
442 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
443 - LLVM_VERSION=6.0 .gitlab-ci/scons-build.sh
444 - LLVM_VERSION=7 .gitlab-ci/scons-build.sh
445 - LLVM_VERSION=8 .gitlab-ci/scons-build.sh
446
447 scons-old-llvm:
448 extends:
449 - scons
450 - .use-debian-9:amd64
451 script:
452 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
453 - LLVM_VERSION=4.0 .gitlab-ci/scons-build.sh
454 - LLVM_VERSION=5.0 .gitlab-ci/scons-build.sh
455
456 .test:
457 extends:
458 - .ci-run-policy
459 image: $DEBIAN_TEST_IMAGE
460 stage: test
461 variables:
462 GIT_STRATEGY: none # testing doesn't build anything from source
463 before_script:
464 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
465 - rm -rf install
466 - tar -xf artifacts/install.tar
467 - LD_LIBRARY_PATH=install/lib ldd install/lib/{*,dri/swrast_dri}.so
468 artifacts:
469 when: on_failure
470 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
471 paths:
472 - results/
473 dependencies:
474 - meson-main
475 needs:
476 - meson-main
477 - debian-10-test:amd64
478
479 .piglit-test:
480 extends: .test
481 artifacts:
482 reports:
483 junit: results/results.xml
484 variables:
485 LIBGL_ALWAYS_SOFTWARE: 1
486 PIGLIT_NO_WINDOW: 1
487 script:
488 - artifacts/piglit/run.sh
489
490 piglit-quick_gl:
491 extends: .piglit-test
492 variables:
493 LP_NUM_THREADS: 0
494 PIGLIT_OPTIONS: >
495 -x arb_gpu_shader5
496 -x glx-multithread-clearbuffer
497 -x glx-multithread-shader-compile
498 -x max-texture-size
499 -x maxsize
500 PIGLIT_PROFILES: quick_gl
501
502 piglit-glslparser+quick_shader:
503 extends: .piglit-test
504 variables:
505 LP_NUM_THREADS: 1
506 PIGLIT_OPTIONS: >
507 -x spec@arb_arrays_of_arrays@execution@ubo
508 -x spec@arb_gpu_shader_int64@execution$$
509 -x spec@arb_separate_shader_objects@execution
510 -x spec@arb_separate_shader_objects@linker
511 -x spec@arb_shader_storage_buffer_object@execution
512 -x spec@glsl-1.50@execution@built-in-functions
513 PIGLIT_PROFILES: "glslparser quick_shader"
514 PIGLIT_RESULTS: "glslparser+quick_shader"
515
516 .deqp-test:
517 extends: .test
518 variables:
519 DEQP_SKIPS: deqp-default-skips.txt
520 script:
521 - ./artifacts/deqp-runner.sh
522
523 test-llvmpipe-gles2:
524 variables:
525 DEQP_VER: gles2
526 DEQP_PARALLEL: 4
527 # Don't use threads inside llvmpipe, we've already got all 4 cores
528 # busy with DEQP_PARALLEL.
529 LP_NUM_THREADS: 0
530 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
531 LIBGL_ALWAYS_SOFTWARE: "true"
532 extends: .deqp-test
533
534 test-softpipe-gles2:
535 extends: test-llvmpipe-gles2
536 variables:
537 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
538 DEQP_SKIPS: deqp-softpipe-skips.txt
539 GALLIUM_DRIVER: "softpipe"
540
541 test-softpipe-gles3:
542 parallel: 2
543 variables:
544 DEQP_VER: gles3
545 extends: test-softpipe-gles2
546
547 test-softpipe-gles31:
548 parallel: 4
549 variables:
550 DEQP_VER: gles31
551 extends: test-softpipe-gles2
552
553 arm64_a630_gles2:
554 extends: .deqp-test
555 image: $DEBIAN_ARM64_TEST_IMAGE
556 variables:
557 DEQP_VER: gles2
558 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
559 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
560 NIR_VALIDATE: 0
561 tags:
562 - mesa-cheza
563 dependencies:
564 - meson-arm64
565 needs:
566 - meson-arm64
567 - debian-10-test:arm64
568
569 arm64_a630_gles31:
570 extends: arm64_a630_gles2
571 parallel: 4
572 variables:
573 DEQP_VER: gles31
574
575 arm64_a630_gles3:
576 parallel: 6
577 extends: arm64_a630_gles2
578 variables:
579 DEQP_VER: gles3
580
581 arm64_a306_gles2:
582 parallel: 4
583 extends: arm64_a630_gles2
584 variables:
585 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
586 DEQP_SKIPS: deqp-default-skips.txt
587 tags:
588 - db410c