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