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