gitlab-ci: Use rules: instead of except:/only: for test-docs job
[mesa.git] / .gitlab-ci.yml
1 variables:
2 FDO_UPSTREAM_REPO: mesa/mesa
3
4 include:
5 - project: 'freedesktop/ci-templates'
6 ref: 59de540b620c45739871d1a073d76d5521989d11
7 file: '/templates/debian.yml'
8 - local: '.gitlab-ci/lava-gitlab-ci.yml'
9 - local: '.gitlab-ci/test-source-dep.yml'
10
11 stages:
12 - container+docs
13 - container-2
14 - meson-x86_64
15 - scons
16 - meson-misc
17 - llvmpipe
18 - softpipe
19 - freedreno
20 - panfrost
21 - radv
22 - lima
23 - virgl
24 - deploy
25 - success
26
27 .docs-base:
28 image: alpine
29 script:
30 - apk --no-cache add py3-pip
31 - pip3 install sphinx sphinx_rtd_theme
32 - sphinx-build -b html docs public
33
34 pages:
35 extends: .docs-base
36 stage: deploy
37 artifacts:
38 paths:
39 - public
40 only:
41 refs:
42 - master@mesa/mesa
43 changes:
44 - docs/**/*
45 - .gitlab-ci.yml
46
47 test-docs:
48 extends: .docs-base
49 stage: container+docs
50 rules:
51 - if: '$CI_PROJECT_NAMESPACE == "mesa"'
52 when: never
53 - if: '$GITLAB_USER_LOGIN == "marge-bot"'
54 changes: &docs-or-ci
55 - docs/**/*
56 - .gitlab-ci.yml
57 when: on_success
58 - changes: *docs-or-ci
59 when: manual
60 # Other cases default to never
61
62 # When to automatically run the CI
63 .ci-run-policy:
64 rules:
65 # If any files affecting the pipeline are changed, build/test jobs run
66 # automatically once all dependency jobs have passed
67 - changes: &all_paths
68 - VERSION
69 - bin/git_sha1_gen.py
70 - bin/install_megadrivers.py
71 - bin/meson_get_version.py
72 - bin/symbols-check.py
73 # GitLab CI
74 - .gitlab-ci.yml
75 - .gitlab-ci/**/*
76 # Meson
77 - meson*
78 - build-support/**/*
79 - subprojects/**/*
80 # SCons
81 - SConstruct
82 - scons/**/*
83 - common.py
84 # Source code
85 - include/**/*
86 - src/**/*
87 when: on_success
88 # Otherwise, build/test jobs won't run
89 - when: never
90 retry:
91 max: 2
92 when:
93 - runner_system_failure
94 # Cancel CI run if a newer commit is pushed to the same branch
95 interruptible: true
96
97 success:
98 stage: success
99 image: debian:stable-slim
100 only:
101 - merge_requests
102 except:
103 changes:
104 *all_paths
105 variables:
106 GIT_STRATEGY: none
107 script:
108 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
109
110
111 .ci-deqp-artifacts:
112 artifacts:
113 name: "mesa_${CI_JOB_NAME}"
114 when: always
115 untracked: false
116 paths:
117 # Watch out! Artifacts are relative to the build dir.
118 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
119 - artifacts
120
121 # Build the CI docker images.
122 #
123 # FDO_DISTRIBUTION_TAG is the tag of the docker image used by later stage jobs. If the
124 # image doesn't exist yet, the container stage job generates it.
125 #
126 # In order to generate a new image, one should generally change the tag.
127 # While removing the image from the registry would also work, that's not
128 # recommended except for ephemeral images during development: Replacing
129 # an image after a significant amount of time might pull in newer
130 # versions of gcc/clang or other packages, which might break the build
131 # with older commits using the same tag.
132 #
133 # After merging a change resulting in generating a new image to the
134 # main repository, it's recommended to remove the image from the source
135 # repository's container registry, so that the image from the main
136 # repository's registry will be used there as well.
137
138 .container:
139 stage: container+docs
140 extends:
141 - .ci-run-policy
142 rules:
143 # Run pipeline by default in the main project if any CI pipeline
144 # configuration files were changed, to ensure docker images are up to date
145 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
146 changes:
147 - .gitlab-ci.yml
148 - .gitlab-ci/**/*
149 when: on_success
150 # Run pipeline by default if it was triggered by Marge Bot, is for a
151 # merge request, and any files affecting the pipeline were changed
152 - if: '$GITLAB_USER_LOGIN == "marge-bot" && $CI_PROJECT_PATH != "mesa/mesa"'
153 changes:
154 *all_paths
155 when: on_success
156 # Run pipeline by default in the main project if it was not triggered by
157 # Marge Bot, and any files affecting the pipeline were changed
158 - if: '$GITLAB_USER_LOGIN != "marge-bot" && $CI_PROJECT_PATH == "mesa/mesa"'
159 changes:
160 *all_paths
161 when: on_success
162 # Allow triggering jobs manually in other cases if any files affecting the
163 # pipeline were changed
164 - changes:
165 *all_paths
166 when: manual
167 # Otherwise, container jobs won't run
168 - when: never
169 variables:
170 FDO_DISTRIBUTION_VERSION: buster-slim
171 FDO_REPO_SUFFIX: "debian/$CI_JOB_NAME"
172 FDO_DISTRIBUTION_EXEC: 'bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
173 # no need to pull the whole repo to build the container image
174 GIT_STRATEGY: none
175
176 # Debian 10 based x86 build image base
177 x86_build-base:
178 extends:
179 - .fdo.container-build@debian
180 - .container
181 variables:
182 FDO_DISTRIBUTION_TAG: &x86_build-base "2020-06-12"
183
184 .use-x86_build-base:
185 extends:
186 - x86_build-base
187 - .ci-run-policy
188 stage: container-2
189 variables:
190 BASE_TAG: *x86_build-base
191 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_build-base:$BASE_TAG"
192 needs:
193 - x86_build-base
194
195 # Debian 10 based x86 main build image
196 x86_build:
197 extends:
198 - .use-x86_build-base
199 variables:
200 FDO_DISTRIBUTION_TAG: &x86_build "2020-06-02"
201
202 .use-x86_build:
203 variables:
204 TAG: *x86_build
205 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
206 needs:
207 - x86_build-base
208 - x86_build
209
210 # Debian 10 based i386 cross-build image
211 i386_build:
212 extends:
213 - .use-x86_build-base
214 variables:
215 FDO_DISTRIBUTION_TAG: &i386_build "2020-06-02"
216
217 .use-i386_build:
218 variables:
219 TAG: *i386_build
220 image: "$CI_REGISTRY_IMAGE/debian/i386_build:$TAG"
221 needs:
222 - x86_build-base
223 - i386_build
224
225 # Debian 10 based ppc64el cross-build image
226 ppc64el_build:
227 extends:
228 - .use-x86_build-base
229 variables:
230 FDO_DISTRIBUTION_TAG: &ppc64el_build "2020-06-02"
231
232 .use-ppc64el_build:
233 variables:
234 TAG: *ppc64el_build
235 image: "$CI_REGISTRY_IMAGE/debian/ppc64el_build:$TAG"
236 needs:
237 - x86_build-base
238 - ppc64el_build
239
240 # Debian 10 based s390x cross-build image
241 s390x_build:
242 extends:
243 - .use-x86_build-base
244 variables:
245 FDO_DISTRIBUTION_TAG: &s390x_build "2020-06-02"
246
247 .use-s390x_build:
248 variables:
249 TAG: *s390x_build
250 image: "$CI_REGISTRY_IMAGE/debian/s390x_build:$TAG"
251 needs:
252 - x86_build-base
253 - s390x_build
254
255 # Debian 10 based x86 test image base
256 x86_test-base:
257 extends: x86_build-base
258 variables:
259 FDO_DISTRIBUTION_TAG: &x86_test-base "2020-06-02"
260
261 .use-x86_test-base:
262 extends:
263 - x86_build-base
264 - .ci-run-policy
265 stage: container-2
266 variables:
267 BASE_TAG: *x86_test-base
268 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/x86_test-base:$BASE_TAG"
269 needs:
270 - x86_test-base
271
272 # Debian 10 based x86 test image for GL
273 x86_test-gl:
274 extends: .use-x86_test-base
275 variables:
276 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-06-23-virgl"
277
278 # Debian 10 based x86 test image for VK
279 x86_test-vk:
280 extends: .use-x86_test-base
281 variables:
282 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-06-18-vkcts"
283
284 # Debian 9 based x86 build image (old LLVM)
285 x86_build_old:
286 extends: x86_build-base
287 variables:
288 FDO_DISTRIBUTION_TAG: &x86_build_old "2020-06-12"
289 FDO_DISTRIBUTION_VERSION: stretch-slim
290
291 .use-x86_build_old:
292 variables:
293 TAG: *x86_build_old
294 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
295 needs:
296 - x86_build_old
297
298 # Debian 10 based ARM build image
299 arm_build:
300 extends:
301 - .fdo.container-build@debian@arm64v8
302 - .container
303 variables:
304 FDO_DISTRIBUTION_TAG: &arm_build "2020-06-22-tracie"
305
306 .use-arm_build:
307 variables:
308 TAG: *arm_build
309 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
310 needs:
311 - arm_build
312
313 # Debian 10 based x86 baremetal image base
314 arm_test-base:
315 extends:
316 - .fdo.container-build@debian
317 - .container
318 variables:
319 FDO_DISTRIBUTION_TAG: &arm_test-base "2020-06-22-tracie"
320
321 .use-arm_test-base:
322 extends:
323 - arm_test-base
324 - .ci-run-policy
325 stage: container-2
326 variables:
327 BASE_TAG: *arm_test-base
328 FDO_BASE_IMAGE: "$CI_REGISTRY_IMAGE/debian/arm_test-base:$BASE_TAG"
329 needs:
330 - arm_test-base
331
332 # x86 image with ARM64 rootfs for baremetal testing.
333 arm64_test:
334 extends:
335 - .use-arm_test-base
336 variables:
337 FDO_DISTRIBUTION_TAG: &arm64_test "2020-06-25-kernelfix"
338
339 .use-arm64_test:
340 variables:
341 TAG: *arm64_test
342 image: "$CI_REGISTRY_IMAGE/debian/arm64_test:$TAG"
343 needs:
344 - arm_test-base
345 - arm64_test
346
347 # Native Windows docker builds
348 #
349 # Unlike the above Linux-based builds - including MinGW/SCons builds which
350 # cross-compile for Windows - which use the freedesktop ci-templates, we
351 # cannot use the same scheme here. As Windows lacks support for
352 # Docker-in-Docker, and Podman does not run natively on Windows, we have
353 # to open-code much of the same ourselves.
354 #
355 # This is achieved by first running in a native Windows shell instance
356 # (host PowerShell) in the container stage to build and push the image,
357 # then in the build stage by executing inside Docker.
358
359 .windows-docker-vs2019:
360 variables:
361 WINDOWS_TAG: "2020-05-05-llvm"
362 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
363 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
364
365 windows_build_vs2019:
366 extends:
367 - .container
368 - .windows-docker-vs2019
369 stage: container+docs
370 variables:
371 GIT_STRATEGY: fetch # we do actually need the full repository though
372 timeout: 4h # LLVM takes ages
373 tags:
374 - windows
375 - shell
376 - "1809"
377 - mesa
378 script:
379 - .\.gitlab-ci\windows\mesa_container.ps1 $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $WINDOWS_IMAGE $WINDOWS_UPSTREAM_IMAGE
380
381 .use-windows_build_vs2019:
382 extends: .windows-docker-vs2019
383 image: "$WINDOWS_IMAGE"
384 needs:
385 - windows_build_vs2019
386
387 # BUILD
388
389 # Shared between windows and Linux
390 .build-common:
391 extends: .ci-run-policy
392 artifacts:
393 name: "mesa_${CI_JOB_NAME}"
394 when: always
395 paths:
396 - _build/meson-logs/*.txt
397 # scons:
398 - build/*/config.log
399 - shader-db
400
401 # Just Linux
402 .build-linux:
403 extends: .build-common
404 variables:
405 CCACHE_COMPILERCHECK: "content"
406 CCACHE_COMPRESS: "true"
407 CCACHE_DIR: /cache/mesa/ccache
408 # Use ccache transparently, and print stats before/after
409 before_script:
410 - export PATH="/usr/lib/ccache:$PATH"
411 - export CCACHE_BASEDIR="$PWD"
412 - ccache --show-stats
413 after_script:
414 - ccache --show-stats
415
416 .build-windows:
417 extends: .build-common
418 tags:
419 - windows
420 - docker
421 - "1809"
422 - mesa
423 cache:
424 key: ${CI_JOB_NAME}
425 paths:
426 - subprojects/packagecache
427
428 .meson-build:
429 extends:
430 - .build-linux
431 - .use-x86_build
432 stage: meson-x86_64
433 variables:
434 LLVM_VERSION: 9
435 script:
436 - .gitlab-ci/meson-build.sh
437
438 .scons-build:
439 extends:
440 - .build-linux
441 - .use-x86_build
442 stage: scons
443 variables:
444 SCONSFLAGS: "-j4"
445 script:
446 - .gitlab-ci/scons-build.sh
447
448 meson-testing:
449 extends:
450 - .meson-build
451 - .ci-deqp-artifacts
452 variables:
453 UNWIND: "enabled"
454 DRI_LOADERS: >
455 -D glx=dri
456 -D gbm=enabled
457 -D egl=enabled
458 -D platforms=x11,drm,surfaceless
459 GALLIUM_ST: >
460 -D dri3=enabled
461 GALLIUM_DRIVERS: "swrast,virgl"
462 VULKAN_DRIVERS: amd
463 BUILDTYPE: "debugoptimized"
464 EXTRA_OPTION: >
465 -D werror=true
466 script:
467 - .gitlab-ci/meson-build.sh
468 - .gitlab-ci/prepare-artifacts.sh
469
470 meson-gallium:
471 extends: .meson-build
472 variables:
473 UNWIND: "enabled"
474 DRI_LOADERS: >
475 -D glx=dri
476 -D gbm=enabled
477 -D egl=enabled
478 -D platforms=x11,wayland,drm,surfaceless
479 GALLIUM_ST: >
480 -D dri3=enabled
481 -D gallium-extra-hud=true
482 -D gallium-vdpau=enabled
483 -D gallium-xvmc=enabled
484 -D gallium-omx=bellagio
485 -D gallium-va=enabled
486 -D gallium-xa=enabled
487 -D gallium-nine=true
488 -D gallium-opencl=disabled
489 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
490 EXTRA_OPTION: >
491 -D osmesa=gallium
492 -D tools=all
493 script:
494 - .gitlab-ci/meson-build.sh
495 - .gitlab-ci/run-shader-db.sh
496
497 meson-classic:
498 extends: .meson-build
499 variables:
500 UNWIND: "enabled"
501 DRI_LOADERS: >
502 -D glx=dri
503 -D gbm=enabled
504 -D egl=enabled
505 -D platforms=x11,wayland,drm,surfaceless
506 DRI_DRIVERS: "auto"
507 EXTRA_OPTION: >
508 -D osmesa=classic
509 -D tools=all
510
511 .meson-cross:
512 extends:
513 - .meson-build
514 stage: meson-misc
515 variables:
516 UNWIND: "disabled"
517 DRI_LOADERS: >
518 -D glx=disabled
519 -D gbm=disabled
520 -D egl=enabled
521 -D platforms=surfaceless
522 -D osmesa=none
523 GALLIUM_ST: >
524 -D dri3=disabled
525 -D gallium-vdpau=disabled
526 -D gallium-xvmc=disabled
527 -D gallium-omx=disabled
528 -D gallium-va=disabled
529 -D gallium-xa=disabled
530 -D gallium-nine=false
531 LLVM_VERSION: "8"
532
533 .meson-arm:
534 extends:
535 - .meson-cross
536 - .use-arm_build
537 variables:
538 VULKAN_DRIVERS: freedreno
539 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
540 BUILDTYPE: "debugoptimized"
541 tags:
542 - aarch64
543
544 meson-armhf:
545 extends:
546 - .meson-arm
547 - .ci-deqp-artifacts
548 variables:
549 CROSS: armhf
550 LLVM_VERSION: "7"
551 EXTRA_OPTION: >
552 -D llvm=disabled
553 script:
554 - .gitlab-ci/meson-build.sh
555 - .gitlab-ci/prepare-artifacts.sh
556
557 meson-arm64:
558 extends:
559 - .meson-arm
560 - .ci-deqp-artifacts
561 variables:
562 VULKAN_DRIVERS: "freedreno"
563 EXTRA_OPTION: >
564 -D llvm=disabled
565 script:
566 - .gitlab-ci/meson-build.sh
567 - .gitlab-ci/prepare-artifacts.sh
568
569 meson-arm64-build-test:
570 extends:
571 - .meson-arm
572 - .ci-deqp-artifacts
573 variables:
574 VULKAN_DRIVERS: "amd"
575 script:
576 - .gitlab-ci/meson-build.sh
577
578 meson-clang:
579 extends: .meson-build
580 variables:
581 UNWIND: "enabled"
582 DRI_LOADERS: >
583 -D glvnd=true
584 DRI_DRIVERS: "auto"
585 GALLIUM_DRIVERS: "auto"
586 VULKAN_DRIVERS: intel,amd,freedreno
587 CC: "ccache clang-9"
588 CXX: "ccache clang++-9"
589
590 meson-windows-vs2019:
591 extends:
592 - .build-windows
593 - .use-windows_build_vs2019
594 stage: meson-misc
595 script:
596 - . .\.gitlab-ci\windows\mesa_build.ps1
597
598 scons-win64:
599 extends: .scons-build
600 variables:
601 SCONS_TARGET: platform=windows machine=x86_64 debug=1
602 SCONS_CHECK_COMMAND: "true"
603 allow_failure: true
604
605 meson-clover:
606 extends: .meson-build
607 variables:
608 UNWIND: "enabled"
609 DRI_LOADERS: >
610 -D glx=disabled
611 -D egl=disabled
612 -D gbm=disabled
613 GALLIUM_DRIVERS: "r600,radeonsi"
614 GALLIUM_ST: >
615 -D dri3=disabled
616 -D gallium-vdpau=disabled
617 -D gallium-xvmc=disabled
618 -D gallium-omx=disabled
619 -D gallium-va=disabled
620 -D gallium-xa=disabled
621 -D gallium-nine=false
622 -D gallium-opencl=icd
623 script:
624 - .gitlab-ci/meson-build.sh
625 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
626
627 meson-clover-old-llvm:
628 extends:
629 - meson-clover
630 - .use-x86_build_old
631 variables:
632 UNWIND: "disabled"
633 DRI_LOADERS: >
634 -D glx=disabled
635 -D egl=disabled
636 -D gbm=disabled
637 -D platforms=drm,surfaceless
638 GALLIUM_DRIVERS: "i915,r600"
639 script:
640 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
641 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
642 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
643 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
644 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
645
646 meson-vulkan:
647 extends: .meson-build
648 variables:
649 UNWIND: "disabled"
650 DRI_LOADERS: >
651 -D glx=disabled
652 -D gbm=disabled
653 -D egl=disabled
654 -D platforms=x11,wayland,drm
655 -D osmesa=none
656 GALLIUM_ST: >
657 -D dri3=enabled
658 -D gallium-vdpau=disabled
659 -D gallium-xvmc=disabled
660 -D gallium-omx=disabled
661 -D gallium-va=disabled
662 -D gallium-xa=disabled
663 -D gallium-nine=false
664 -D gallium-opencl=disabled
665 -D b_sanitize=undefined
666 -D c_args=-fno-sanitize-recover=all
667 -D cpp_args=-fno-sanitize-recover=all
668 UBSAN_OPTIONS: "print_stacktrace=1"
669 VULKAN_DRIVERS: intel,amd,freedreno
670 EXTRA_OPTION: >
671 -D vulkan-overlay-layer=true
672 -D werror=true
673
674 meson-i386:
675 extends:
676 - .meson-cross
677 - .use-i386_build
678 variables:
679 CROSS: i386
680 VULKAN_DRIVERS: intel,amd
681 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
682 EXTRA_OPTION: >
683 -D vulkan-overlay-layer=true
684 -D werror=true
685
686 meson-s390x:
687 extends:
688 - .meson-cross
689 - .use-s390x_build
690 tags:
691 - kvm
692 variables:
693 CROSS: s390x
694 EXTRA_OPTION: >
695 -D werror=true
696 GALLIUM_DRIVERS: "swrast"
697
698 meson-ppc64el:
699 extends:
700 - meson-s390x
701 - .use-ppc64el_build
702 variables:
703 CROSS: ppc64el
704 EXTRA_OPTION: ""
705 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
706 VULKAN_DRIVERS: "amd"
707
708 meson-mingw32-x86_64:
709 extends: .meson-build
710 stage: meson-misc
711 variables:
712 UNWIND: "disabled"
713 DRI_DRIVERS: ""
714 GALLIUM_DRIVERS: "swrast"
715 EXTRA_OPTION: >
716 -Dllvm=disabled
717 -Dosmesa=gallium
718 --cross-file=.gitlab-ci/x86_64-w64-mingw32
719
720 .test:
721 extends:
722 - .ci-run-policy
723 variables:
724 GIT_STRATEGY: none # testing doesn't build anything from source
725 before_script:
726 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
727 - rm -rf install
728 - tar -xf artifacts/install.tar
729 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
730 artifacts:
731 when: always
732 name: "mesa_${CI_JOB_NAME}"
733 paths:
734 - results/
735
736 .test-gl:
737 extends:
738 - .test
739 variables:
740 TAG: *x86_test-gl
741 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
742 needs:
743 - x86_build-base
744 - x86_build
745 - meson-testing
746 - x86_test-base
747 - x86_test-gl
748 dependencies:
749 - meson-testing
750
751 .test-vk:
752 extends:
753 - .test
754 variables:
755 TAG: *x86_test-vk
756 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
757 needs:
758 - x86_build-base
759 - x86_build
760 - meson-testing
761 - x86_test-base
762 - x86_test-vk
763 dependencies:
764 - meson-testing
765
766 .piglit-test:
767 extends:
768 - .test-gl
769 - .llvmpipe-rules
770 artifacts:
771 when: on_failure
772 name: "mesa_${CI_JOB_NAME}"
773 paths:
774 - summary/
775 variables:
776 LIBGL_ALWAYS_SOFTWARE: 1
777 PIGLIT_NO_WINDOW: 1
778 script:
779 - install/piglit/run.sh
780
781 piglit-quick_gl:
782 extends: .piglit-test
783 variables:
784 LP_NUM_THREADS: 0
785 NIR_VALIDATE: 0
786 PIGLIT_OPTIONS: >
787 --process-isolation false
788 -x arb_gpu_shader5
789 -x egl_ext_device_
790 -x egl_ext_platform_device
791 -x ext_timer_query@time-elapsed
792 -x glx-multithread-clearbuffer
793 -x glx-multithread-shader-compile
794 -x max-texture-size
795 -x maxsize
796 PIGLIT_PROFILES: quick_gl
797
798 piglit-glslparser:
799 extends: .piglit-test
800 variables:
801 LP_NUM_THREADS: 0
802 NIR_VALIDATE: 0
803 PIGLIT_PROFILES: glslparser
804
805 piglit-quick_shader:
806 extends: .piglit-test
807 variables:
808 LP_NUM_THREADS: 1
809 NIR_VALIDATE: 0
810 PIGLIT_PROFILES: quick_shader
811
812 .deqp-test:
813 variables:
814 DEQP_SKIPS: deqp-default-skips.txt
815 script:
816 - ./install/deqp-runner.sh
817
818 .deqp-test-gl:
819 extends:
820 - .test-gl
821 - .deqp-test
822
823 .deqp-test-vk:
824 extends:
825 - .test-vk
826 - .deqp-test
827 variables:
828 DEQP_VER: vk
829
830 .fossilize-test:
831 extends: .test-vk
832 script:
833 - ./install/fossilize-runner.sh
834 artifacts:
835 when: on_failure
836 name: "mesa_${CI_JOB_NAME}"
837 paths:
838 - results/
839
840 llvmpipe-gles2:
841 variables:
842 DEQP_VER: gles2
843 DEQP_PARALLEL: 4
844 NIR_VALIDATE: 0
845 # Don't use threads inside llvmpipe, we've already got all 4 cores
846 # busy with DEQP_PARALLEL.
847 LP_NUM_THREADS: 0
848 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
849 LIBGL_ALWAYS_SOFTWARE: "true"
850 DEQP_EXPECTED_RENDERER: llvmpipe
851 extends:
852 - .deqp-test-gl
853 - .llvmpipe-rules
854
855 softpipe-gles2:
856 extends:
857 - llvmpipe-gles2
858 - .softpipe-rules
859 variables:
860 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
861 DEQP_SKIPS: deqp-softpipe-skips.txt
862 GALLIUM_DRIVER: "softpipe"
863 DEQP_EXPECTED_RENDERER: softpipe
864
865 softpipe-gles3:
866 parallel: 2
867 variables:
868 DEQP_VER: gles3
869 extends: softpipe-gles2
870
871 softpipe-gles31:
872 parallel: 4
873 variables:
874 DEQP_VER: gles31
875 extends: softpipe-gles2
876
877 virgl-gles2-on-gl:
878 variables:
879 DEQP_VER: gles2
880 DEQP_PARALLEL: 4
881 NIR_VALIDATE: 0
882 DEQP_NO_SAVE_RESULTS: 1
883 # Don't use threads inside llvmpipe, we've already got all 4 cores
884 # busy with DEQP_PARALLEL.
885 LP_NUM_THREADS: 0
886 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
887 DEQP_OPTIONS: "--deqp-log-images=disable"
888 LIBGL_ALWAYS_SOFTWARE: "true"
889 GALLIUM_DRIVER: "virpipe"
890 DEQP_EXPECTED_RENDERER: virgl
891 extends:
892 - .deqp-test-gl
893 - .virgl-rules
894
895 virgl-gles3-on-gl:
896 parallel: 2
897 variables:
898 DEQP_VER: gles3
899 DEQP_RUNNER_OPTIONS: "--timeout 180"
900 extends: virgl-gles2-on-gl
901
902 virgl-gles31-on-gl:
903 parallel: 4
904 variables:
905 DEQP_VER: gles31
906 MESA_GLES_VERSION_OVERRIDE: "3.1"
907 MESA_GLSL_VERSION_OVERRIDE: "310"
908 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
909 extends: virgl-gles3-on-gl
910
911 virgl-gl30-on-gl:
912 variables:
913 DEQP_VER: gl30
914 extends: virgl-gles2-on-gl
915
916 virgl-gl31-on-gl:
917 variables:
918 DEQP_VER: gl31
919 extends: virgl-gles2-on-gl
920
921 virgl-gl32-on-gl:
922 variables:
923 DEQP_VER: gl32
924 extends: virgl-gles2-on-gl
925
926 # Rules for tests that should not be present in MRs or the main
927 # project's pipeline (don't block marge or report red on
928 # mesa/mesamaster) but should be present on pipelines in personal
929 # branches (so you can opt in to running the flaky test when you want
930 # to).
931 .test-manual:
932 rules:
933 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
934 changes:
935 *all_paths
936 when: manual
937 - when: never
938
939 virgl-gles2-on-gles:
940 variables:
941 VIRGL_HOST_API: GLES
942 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
943 extends:
944 - virgl-gles2-on-gl
945 - .test-manual
946
947 virgl-gles3-on-gles:
948 variables:
949 VIRGL_HOST_API: GLES
950 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
951 extends:
952 - virgl-gles3-on-gl
953 - .test-manual
954
955 virgl-gles31-on-gles:
956 variables:
957 VIRGL_HOST_API: GLES
958 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
959 extends:
960 - virgl-gles31-on-gl
961 - .test-manual
962
963 arm64_a630_gles2:
964 extends:
965 - arm64_a306_gles2
966 variables:
967 BM_KERNEL: /lava-files/cheza-kernel
968 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 root=/dev/nfs rw nfsrootdebug nfsroot=,tcp,nfsvers=4.2 init=/init"
969 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
970 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
971 GIT_STRATEGY: none
972 DEQP_EXPECTED_RENDERER: FD630
973 DEQP_NO_SAVE_RESULTS: ""
974 tags:
975 - google-freedreno-cheza
976 script:
977 - ./install/bare-metal/cros-servo.sh
978
979 arm64_a630_gles31:
980 extends: arm64_a630_gles2
981 variables:
982 DEQP_VER: gles31
983 # gles31 is about 12 minutes with validation enabled.
984 NIR_VALIDATE: 0
985
986 arm64_a630_gles3:
987 extends: arm64_a630_gles2
988 variables:
989 DEQP_VER: gles3
990 # gles3 is about 15 minutes with validation enabled.
991 NIR_VALIDATE: 0
992
993 # We almost always manage to lower UBOs back to constant uploads in
994 # the test suite, so get a little testing for it here.
995 arm64_a630_noubo:
996 extends: arm64_a630_gles31
997 variables:
998 DEQP_VER: gles31
999 IR3_SHADER_DEBUG: nouboopt
1000 DEQP_CASELIST_FILTER: "functional.*ubo"
1001
1002 # The driver does some guessing as to whether to render using gmem
1003 # or bypass, and some GLES3.1 features interact with either one.
1004 # Do a little testing with gmem and bypass forced.
1005 arm64_a630_bypass:
1006 extends: arm64_a630_gles31
1007 variables:
1008 CI_NODE_INDEX: 1
1009 CI_NODE_TOTAL: 5
1010 FD_MESA_DEBUG: nogmem
1011 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1012
1013 arm64_a630_traces:
1014 extends:
1015 - arm64_a630_gles2
1016 variables:
1017 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1018 DEVICE_NAME: "freedreno-a630"
1019 TRACIE_NO_UNIT_TESTS: 1
1020 # This lets us run several more traces which don't use any features we're
1021 # missing.
1022 MESA_GLSL_VERSION_OVERRIDE: "460"
1023 MESA_GL_VERSION_OVERRIDE: "4.6"
1024
1025 # Along with checking gmem path, check that we don't get obvious nir
1026 # validation failures (though it's too expensive to have it on for the
1027 # full CTS)
1028 arm64_a630_gmem:
1029 extends: arm64_a630_gles31
1030 variables:
1031 CI_NODE_INDEX: 1
1032 CI_NODE_TOTAL: 5
1033 FD_MESA_DEBUG: nobypass
1034 NIR_VALIDATE: 1
1035
1036 arm64_a630_vk:
1037 extends: arm64_a630_gles2
1038 variables:
1039 DEQP_VER: vk
1040 CI_NODE_INDEX: 1
1041 CI_NODE_TOTAL: 50
1042 VK_DRIVER: freedreno
1043 # Force binning in the main run, which makes sure we render at
1044 # least 2 bins. This is the path that impacts the most different
1045 # features. However, we end up with flaky results in
1046 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1047 TU_DEBUG: forcebin
1048
1049 # Do a separate sysmem pass over the testcases that really affect sysmem
1050 # rendering. This is currently very flaky, leave it as an option for devs
1051 # to click play on in their branches.
1052 arm64_a630_vk_sysmem:
1053 extends:
1054 - arm64_a630_vk
1055 variables:
1056 CI_NODE_INDEX: 1
1057 CI_NODE_TOTAL: 10
1058 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1059 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1060 TU_DEBUG: sysmem
1061
1062 .baremetal-test:
1063 extends:
1064 - .ci-run-policy
1065 - .test
1066 stage: test
1067 artifacts:
1068 when: always
1069 name: "mesa_${CI_JOB_NAME}"
1070 paths:
1071 - results/
1072 - serial*.txt
1073
1074 arm64_a306_gles2:
1075 extends:
1076 - .baremetal-test
1077 - .use-arm64_test
1078 - .freedreno-rules
1079 variables:
1080 BM_KERNEL: /lava-files/Image.gz
1081 BM_DTB: /lava-files/apq8016-sbc.dtb
1082 BM_ROOTFS: /lava-files/rootfs-arm64
1083 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
1084 FLAKES_CHANNEL: "#freedreno-ci"
1085 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
1086 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
1087 DEQP_SKIPS: deqp-freedreno-a307-skips.txt
1088 DEQP_VER: gles2
1089 DEQP_PARALLEL: 4
1090 DEQP_EXPECTED_RENDERER: FD307
1091 # Since we can't get artifacts back yet, skip making them.
1092 DEQP_NO_SAVE_RESULTS: 1
1093 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
1094 script:
1095 - ./install/bare-metal/fastboot.sh
1096 needs:
1097 - arm_test-base
1098 - arm64_test
1099 - arm_build
1100 - meson-arm64
1101 tags:
1102 - google-freedreno-db410c
1103
1104 # Fractional run, single threaded, due to flaky results
1105 arm64_a306_gles3:
1106 extends:
1107 - arm64_a306_gles2
1108 variables:
1109 DEQP_VER: gles3
1110 DEQP_PARALLEL: 1
1111 CI_NODE_INDEX: 1
1112 CI_NODE_TOTAL: 25
1113 NIR_VALIDATE: 0
1114
1115 # Fractional runs with debug options. Note that since we're not
1116 # hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1117 arm64_a306_gles3_options:
1118 extends: arm64_a306_gles2
1119 variables:
1120 DEQP_VER: gles3
1121 script:
1122 # Check that the non-constbuf UBO case works.
1123 - DEQP_RUN_SUFFIX=-nouboopt IR3_SHADER_DEBUG=nouboopt DEQP_CASELIST_FILTER="functional.*ubo" ./install/bare-metal/fastboot.sh
1124
1125 arm64_a530_gles2:
1126 extends:
1127 - arm64_a306_gles2
1128 variables:
1129 BM_KERNEL: /lava-files/db820c-kernel
1130 BM_DTB: /lava-files/db820c.dtb
1131 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1132 # current upstream kernel.
1133 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
1134 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
1135 DEQP_SKIPS: deqp-freedreno-a530-skips.txt
1136 DEQP_EXPECTED_RENDERER: FD530
1137 NIR_VALIDATE: 0
1138 tags:
1139 - google-freedreno-db820c
1140
1141 arm64_a530_gles3:
1142 extends:
1143 - arm64_a530_gles2
1144 variables:
1145 DEQP_VER: gles3
1146 DEQP_PARALLEL: 1
1147 CI_NODE_INDEX: 1
1148 CI_NODE_TOTAL: 40
1149
1150 arm64_a530_gles31:
1151 extends:
1152 - arm64_a530_gles3
1153 variables:
1154 DEQP_VER: gles31
1155 CI_NODE_INDEX: 1
1156 CI_NODE_TOTAL: 10
1157
1158 # RADV CI
1159 .test-radv:
1160 extends: .radv-rules
1161 stage: radv
1162 variables:
1163 VK_DRIVER: radeon
1164 ACO_DEBUG: validateir,validatera
1165
1166 # Can only be triggered manually on personal branches because RADV is the only
1167 # driver that does Vulkan testing at the moment.
1168 radv_polaris10_vkcts:
1169 extends:
1170 - .deqp-test-vk
1171 - .test-radv
1172 - .test-manual
1173 variables:
1174 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1175 tags:
1176 - polaris10
1177
1178 radv-fossils:
1179 extends:
1180 - .fossilize-test
1181 - .test-radv
1182 script:
1183 # Pitcairn (GFX6)
1184 - export RADV_FORCE_FAMILY="pitcairn"
1185 - ./install/fossilize-runner.sh
1186 # Bonaire (GFX7)
1187 - export RADV_FORCE_FAMILY="bonaire"
1188 - ./install/fossilize-runner.sh
1189 # Polaris10 (GFX8)
1190 - export RADV_FORCE_FAMILY="polaris10"
1191 - ./install/fossilize-runner.sh
1192 # Vega10 (GFX9)
1193 - export RADV_FORCE_FAMILY="gfx900"
1194 - ./install/fossilize-runner.sh
1195 # Navi10 (GFX10)
1196 - export RADV_FORCE_FAMILY="gfx1010"
1197 - ./install/fossilize-runner.sh
1198
1199 # Traces CI
1200 .traces-test:
1201 cache:
1202 key: ${CI_JOB_NAME}
1203 paths:
1204 - traces-db/
1205
1206 .traces-test-gl:
1207 extends:
1208 - .test-gl
1209 - .traces-test
1210 script:
1211 - ./install/tracie-runner-gl.sh
1212
1213 .traces-test-vk:
1214 extends:
1215 - .test-vk
1216 - .traces-test
1217 script:
1218 - ./install/tracie-runner-vk.sh
1219
1220 llvmpipe-traces:
1221 extends:
1222 - .traces-test-gl
1223 - .llvmpipe-rules
1224 variables:
1225 LIBGL_ALWAYS_SOFTWARE: "true"
1226 GALLIUM_DRIVER: "llvmpipe"
1227 DEVICE_NAME: "gl-vmware-llvmpipe"
1228
1229 radv-polaris10-traces:
1230 extends:
1231 - .traces-test-vk
1232 - .test-radv
1233 - .test-manual
1234 variables:
1235 DEVICE_NAME: "vk-amd-polaris10"
1236 tags:
1237 - polaris10
1238
1239 virgl-traces:
1240 extends:
1241 - .traces-test-gl
1242 - .virgl-rules
1243 variables:
1244 LIBGL_ALWAYS_SOFTWARE: "true"
1245 GALLIUM_DRIVER: "virpipe"
1246 DEVICE_NAME: "gl-virgl"
1247 MESA_GLES_VERSION_OVERRIDE: "3.1"
1248 MESA_GLSL_VERSION_OVERRIDE: "310"