egl: drop now empty egl_dri2_fallbacks.h
[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 stage: container+docs
68 rules:
69 - *ignore_scheduled_pipelines
70 - if: '$CI_PROJECT_NAMESPACE == "mesa"'
71 when: never
72 - if: '$GITLAB_USER_LOGIN == "marge-bot"'
73 changes: *docs-or-ci
74 when: on_success
75 - changes: *docs-or-ci
76 when: manual
77 # Other cases default to never
78
79 # When to automatically run the CI
80 .ci-run-policy:
81 rules:
82 - *ignore_scheduled_pipelines
83 # If any files affecting the pipeline are changed, build/test jobs run
84 # automatically once all dependency jobs have passed
85 - changes: &all_paths
86 - VERSION
87 - bin/git_sha1_gen.py
88 - bin/install_megadrivers.py
89 - bin/meson_get_version.py
90 - bin/symbols-check.py
91 # GitLab CI
92 - .gitlab-ci.yml
93 - .gitlab-ci/**/*
94 # Meson
95 - meson*
96 - build-support/**/*
97 - subprojects/**/*
98 # SCons
99 - SConstruct
100 - scons/**/*
101 - common.py
102 # Source code
103 - include/**/*
104 - src/**/*
105 when: on_success
106 # Otherwise, build/test jobs won't run
107 - when: never
108 retry:
109 max: 2
110 when:
111 - runner_system_failure
112 # Cancel CI run if a newer commit is pushed to the same branch
113 interruptible: true
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: '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-06-12"
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-10"
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-10"
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-10"
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-06-02"
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-06-02"
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-15-virgl"
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-06-18-vkcts"
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-06-12"
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-10"
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-06-22-tracie"
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-06-25-kernelfix"
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 artifacts:
453 name: "mesa_${CI_JOB_NAME}"
454 when: always
455 paths:
456 - _build/meson-logs/*.txt
457 # scons:
458 - build/*/config.log
459 - shader-db
460
461 # Just Linux
462 .build-linux:
463 extends: .build-common
464 variables:
465 CCACHE_COMPILERCHECK: "content"
466 CCACHE_COMPRESS: "true"
467 CCACHE_DIR: /cache/mesa/ccache
468 # Use ccache transparently, and print stats before/after
469 before_script:
470 - export PATH="/usr/lib/ccache:$PATH"
471 - export CCACHE_BASEDIR="$PWD"
472 - ccache --show-stats
473 after_script:
474 - ccache --show-stats
475
476 .build-windows:
477 extends: .build-common
478 tags:
479 - windows
480 - docker
481 - "1809"
482 - mesa
483 cache:
484 key: ${CI_JOB_NAME}
485 paths:
486 - subprojects/packagecache
487
488 .meson-build:
489 extends:
490 - .build-linux
491 - .use-x86_build
492 stage: meson-x86_64
493 variables:
494 LLVM_VERSION: 9
495 script:
496 - .gitlab-ci/meson-build.sh
497
498 .scons-build:
499 extends:
500 - .build-linux
501 - .use-x86_build
502 stage: scons
503 variables:
504 SCONSFLAGS: "-j4"
505 script:
506 - .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 variables:
790 GIT_STRATEGY: none # testing doesn't build anything from source
791 before_script:
792 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
793 - rm -rf install
794 - tar -xf artifacts/install.tar
795 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
796 artifacts:
797 when: always
798 name: "mesa_${CI_JOB_NAME}"
799 paths:
800 - results/
801
802 .test-gl:
803 extends:
804 - .test
805 variables:
806 TAG: *x86_test-gl
807 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
808 needs:
809 - meson-testing
810 - x86_test-gl
811
812 .test-vk:
813 extends:
814 - .test
815 variables:
816 TAG: *x86_test-vk
817 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
818 needs:
819 - meson-testing
820 - x86_test-vk
821
822 .piglit-test:
823 extends:
824 - .test-gl
825 - .llvmpipe-rules
826 artifacts:
827 when: on_failure
828 name: "mesa_${CI_JOB_NAME}"
829 paths:
830 - summary/
831 variables:
832 LIBGL_ALWAYS_SOFTWARE: 1
833 PIGLIT_NO_WINDOW: 1
834 script:
835 - install/piglit/run.sh
836
837 piglit-quick_gl:
838 extends: .piglit-test
839 variables:
840 LP_NUM_THREADS: 0
841 NIR_VALIDATE: 0
842 PIGLIT_OPTIONS: >
843 --process-isolation false
844 -x arb_gpu_shader5
845 -x egl_ext_device_
846 -x egl_ext_platform_device
847 -x ext_timer_query@time-elapsed
848 -x glx-multithread-clearbuffer
849 -x glx-multithread-shader-compile
850 -x max-texture-size
851 -x maxsize
852 PIGLIT_PROFILES: quick_gl
853
854 piglit-glslparser:
855 extends: .piglit-test
856 variables:
857 LP_NUM_THREADS: 0
858 NIR_VALIDATE: 0
859 PIGLIT_PROFILES: glslparser
860
861 piglit-quick_shader:
862 extends: .piglit-test
863 variables:
864 LP_NUM_THREADS: 1
865 NIR_VALIDATE: 0
866 PIGLIT_PROFILES: quick_shader
867
868 .deqp-test:
869 variables:
870 DEQP_SKIPS: deqp-default-skips.txt
871 script:
872 - ./install/deqp-runner.sh
873
874 .deqp-test-gl:
875 extends:
876 - .test-gl
877 - .deqp-test
878
879 .deqp-test-vk:
880 extends:
881 - .test-vk
882 - .deqp-test
883 variables:
884 DEQP_VER: vk
885
886 .fossilize-test:
887 extends: .test-vk
888 script:
889 - ./install/fossilize-runner.sh
890 artifacts:
891 when: on_failure
892 name: "mesa_${CI_JOB_NAME}"
893 paths:
894 - results/
895
896 llvmpipe-gles2:
897 variables:
898 DEQP_VER: gles2
899 DEQP_PARALLEL: 4
900 NIR_VALIDATE: 0
901 # Don't use threads inside llvmpipe, we've already got all 4 cores
902 # busy with DEQP_PARALLEL.
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 DEQP_PARALLEL: 4
937 NIR_VALIDATE: 0
938 DEQP_NO_SAVE_RESULTS: 1
939 # Don't use threads inside llvmpipe, we've already got all 4 cores
940 # busy with DEQP_PARALLEL.
941 LP_NUM_THREADS: 0
942 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
943 DEQP_OPTIONS: "--deqp-log-images=disable"
944 LIBGL_ALWAYS_SOFTWARE: "true"
945 GALLIUM_DRIVER: "virpipe"
946 DEQP_EXPECTED_RENDERER: virgl
947 extends:
948 - .deqp-test-gl
949 - .virgl-rules
950
951 virgl-gles3-on-gl:
952 parallel: 2
953 variables:
954 DEQP_VER: gles3
955 DEQP_RUNNER_OPTIONS: "--timeout 180"
956 extends: virgl-gles2-on-gl
957
958 virgl-gles31-on-gl:
959 parallel: 4
960 variables:
961 DEQP_VER: gles31
962 MESA_GLES_VERSION_OVERRIDE: "3.1"
963 MESA_GLSL_VERSION_OVERRIDE: "310"
964 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
965 extends: virgl-gles3-on-gl
966
967 virgl-gl30-on-gl:
968 variables:
969 DEQP_VER: gl30
970 extends: virgl-gles2-on-gl
971
972 virgl-gl31-on-gl:
973 variables:
974 DEQP_VER: gl31
975 extends: virgl-gles2-on-gl
976
977 virgl-gl32-on-gl:
978 variables:
979 DEQP_VER: gl32
980 extends: virgl-gles2-on-gl
981
982 # Rules for tests that should not be present in MRs or the main
983 # project's pipeline (don't block marge or report red on
984 # mesa/mesamaster) but should be present on pipelines in personal
985 # branches (so you can opt in to running the flaky test when you want
986 # to).
987 .test-manual:
988 rules:
989 - *ignore_scheduled_pipelines
990 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
991 changes:
992 *all_paths
993 when: manual
994 - when: never
995
996 virgl-gles2-on-gles:
997 variables:
998 VIRGL_HOST_API: GLES
999 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1000 extends:
1001 - virgl-gles2-on-gl
1002 - .test-manual
1003
1004 virgl-gles3-on-gles:
1005 variables:
1006 VIRGL_HOST_API: GLES
1007 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1008 extends:
1009 - virgl-gles3-on-gl
1010 - .test-manual
1011
1012 virgl-gles31-on-gles:
1013 variables:
1014 VIRGL_HOST_API: GLES
1015 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1016 extends:
1017 - virgl-gles31-on-gl
1018 - .test-manual
1019
1020 arm64_a630_gles2:
1021 extends:
1022 - arm64_a306_gles2
1023 variables:
1024 BM_KERNEL: /lava-files/cheza-kernel
1025 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 root=/dev/nfs rw nfsrootdebug nfsroot=,tcp,nfsvers=4.2 init=/init"
1026 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
1027 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
1028 GIT_STRATEGY: none
1029 DEQP_EXPECTED_RENDERER: FD630
1030 DEQP_NO_SAVE_RESULTS: ""
1031 tags:
1032 - google-freedreno-cheza
1033 script:
1034 - ./install/bare-metal/cros-servo.sh
1035
1036 arm64_a630_gles31:
1037 extends: arm64_a630_gles2
1038 variables:
1039 CI_NODE_INDEX: 1
1040 CI_NODE_TOTAL: 2
1041 DEQP_VER: gles31
1042 # gles31 is about 12 minutes with validation enabled.
1043 NIR_VALIDATE: 0
1044
1045 arm64_a630_gles3:
1046 extends: arm64_a630_gles2
1047 variables:
1048 CI_NODE_INDEX: 1
1049 CI_NODE_TOTAL: 2
1050 DEQP_VER: gles3
1051 # gles3 is about 15 minutes with validation enabled.
1052 NIR_VALIDATE: 0
1053
1054 # We almost always manage to lower UBOs back to constant uploads in
1055 # the test suite, so get a little testing for it here.
1056 .arm64_a630_noubo:
1057 extends: arm64_a630_gles31
1058 variables:
1059 DEQP_VER: gles31
1060 IR3_SHADER_DEBUG: nouboopt
1061 DEQP_CASELIST_FILTER: "functional.*ubo"
1062
1063 # The driver does some guessing as to whether to render using gmem
1064 # or bypass, and some GLES3.1 features interact with either one.
1065 # Do a little testing with gmem and bypass forced.
1066 .arm64_a630_bypass:
1067 extends: arm64_a630_gles31
1068 variables:
1069 CI_NODE_INDEX: 1
1070 CI_NODE_TOTAL: 5
1071 FD_MESA_DEBUG: nogmem
1072 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1073
1074 .arm64_a630_traces:
1075 extends:
1076 - arm64_a630_gles2
1077 variables:
1078 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1079 DEVICE_NAME: "freedreno-a630"
1080 TRACIE_NO_UNIT_TESTS: 1
1081 # This lets us run several more traces which don't use any features we're
1082 # missing.
1083 MESA_GLSL_VERSION_OVERRIDE: "460"
1084 MESA_GL_VERSION_OVERRIDE: "4.6"
1085
1086 # Along with checking gmem path, check that we don't get obvious nir
1087 # validation failures (though it's too expensive to have it on for the
1088 # full CTS)
1089 .arm64_a630_gmem:
1090 extends: arm64_a630_gles31
1091 variables:
1092 CI_NODE_INDEX: 1
1093 CI_NODE_TOTAL: 5
1094 FD_MESA_DEBUG: nobypass
1095 NIR_VALIDATE: 1
1096
1097 arm64_a630_vk:
1098 extends: arm64_a630_gles2
1099 variables:
1100 DEQP_VER: vk
1101 CI_NODE_INDEX: 1
1102 CI_NODE_TOTAL: 50
1103 VK_DRIVER: freedreno
1104 # Force binning in the main run, which makes sure we render at
1105 # least 2 bins. This is the path that impacts the most different
1106 # features. However, we end up with flaky results in
1107 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1108 TU_DEBUG: forcebin
1109
1110 # Do a separate sysmem pass over the testcases that really affect sysmem
1111 # rendering. This is currently very flaky, leave it as an option for devs
1112 # to click play on in their branches.
1113 .arm64_a630_vk_sysmem:
1114 extends:
1115 - arm64_a630_vk
1116 variables:
1117 CI_NODE_INDEX: 1
1118 CI_NODE_TOTAL: 10
1119 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1120 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1121 TU_DEBUG: sysmem
1122
1123 .baremetal-test:
1124 extends:
1125 - .ci-run-policy
1126 - .test
1127 stage: test
1128 artifacts:
1129 when: always
1130 name: "mesa_${CI_JOB_NAME}"
1131 paths:
1132 - results/
1133 - serial*.txt
1134
1135 arm64_a306_gles2:
1136 extends:
1137 - .baremetal-test
1138 - .use-arm64_test
1139 - .freedreno-rules
1140 variables:
1141 BM_KERNEL: /lava-files/Image.gz
1142 BM_DTB: /lava-files/apq8016-sbc.dtb
1143 BM_ROOTFS: /lava-files/rootfs-arm64
1144 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
1145 FLAKES_CHANNEL: "#freedreno-ci"
1146 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
1147 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
1148 DEQP_SKIPS: deqp-freedreno-a307-skips.txt
1149 DEQP_VER: gles2
1150 DEQP_PARALLEL: 4
1151 DEQP_EXPECTED_RENDERER: FD307
1152 # Since we can't get artifacts back yet, skip making them.
1153 DEQP_NO_SAVE_RESULTS: 1
1154 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
1155 script:
1156 - ./install/bare-metal/fastboot.sh
1157 needs:
1158 - arm64_test
1159 - meson-arm64
1160 tags:
1161 - google-freedreno-db410c
1162
1163 # Fractional run, single threaded, due to flaky results
1164 arm64_a306_gles3:
1165 extends:
1166 - arm64_a306_gles2
1167 variables:
1168 DEQP_VER: gles3
1169 DEQP_PARALLEL: 1
1170 CI_NODE_INDEX: 1
1171 CI_NODE_TOTAL: 25
1172 NIR_VALIDATE: 0
1173
1174 # Fractional runs with debug options. Note that since we're not
1175 # hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1176 arm64_a306_gles3_options:
1177 extends: arm64_a306_gles2
1178 variables:
1179 DEQP_VER: gles3
1180 script:
1181 # Check that the non-constbuf UBO case works.
1182 - DEQP_RUN_SUFFIX=-nouboopt IR3_SHADER_DEBUG=nouboopt DEQP_CASELIST_FILTER="functional.*ubo" ./install/bare-metal/fastboot.sh
1183
1184 arm64_a530_gles2:
1185 extends:
1186 - arm64_a306_gles2
1187 variables:
1188 BM_KERNEL: /lava-files/db820c-kernel
1189 BM_DTB: /lava-files/db820c.dtb
1190 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1191 # current upstream kernel.
1192 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
1193 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
1194 DEQP_SKIPS: deqp-freedreno-a530-skips.txt
1195 DEQP_EXPECTED_RENDERER: FD530
1196 NIR_VALIDATE: 0
1197 tags:
1198 - google-freedreno-db820c
1199
1200 arm64_a530_gles3:
1201 extends:
1202 - arm64_a530_gles2
1203 variables:
1204 DEQP_VER: gles3
1205 DEQP_PARALLEL: 1
1206 CI_NODE_INDEX: 1
1207 CI_NODE_TOTAL: 40
1208
1209 arm64_a530_gles31:
1210 extends:
1211 - arm64_a530_gles3
1212 variables:
1213 DEQP_VER: gles31
1214 CI_NODE_INDEX: 1
1215 CI_NODE_TOTAL: 10
1216
1217 # RADV CI
1218 .test-radv:
1219 extends: .radv-rules
1220 stage: radv
1221 variables:
1222 VK_DRIVER: radeon
1223 ACO_DEBUG: validateir,validatera
1224
1225 # Can only be triggered manually on personal branches because RADV is the only
1226 # driver that does Vulkan testing at the moment.
1227 radv_polaris10_vkcts:
1228 extends:
1229 - .deqp-test-vk
1230 - .test-radv
1231 - .test-manual
1232 variables:
1233 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1234 tags:
1235 - polaris10
1236
1237 radv-fossils:
1238 extends:
1239 - .fossilize-test
1240 - .test-radv
1241 script:
1242 # Pitcairn (GFX6)
1243 - export RADV_FORCE_FAMILY="pitcairn"
1244 - ./install/fossilize-runner.sh
1245 # Bonaire (GFX7)
1246 - export RADV_FORCE_FAMILY="bonaire"
1247 - ./install/fossilize-runner.sh
1248 # Polaris10 (GFX8)
1249 - export RADV_FORCE_FAMILY="polaris10"
1250 - ./install/fossilize-runner.sh
1251 # Vega10 (GFX9)
1252 - export RADV_FORCE_FAMILY="gfx900"
1253 - ./install/fossilize-runner.sh
1254 # Navi10 (GFX10)
1255 - export RADV_FORCE_FAMILY="gfx1010"
1256 - ./install/fossilize-runner.sh
1257
1258 # Traces CI
1259 .traces-test:
1260 cache:
1261 key: ${CI_JOB_NAME}
1262 paths:
1263 - traces-db/
1264
1265 .traces-test-gl:
1266 extends:
1267 - .test-gl
1268 - .traces-test
1269 script:
1270 - ./install/tracie-runner-gl.sh
1271
1272 .traces-test-vk:
1273 extends:
1274 - .test-vk
1275 - .traces-test
1276 script:
1277 - ./install/tracie-runner-vk.sh
1278
1279 llvmpipe-traces:
1280 extends:
1281 - .traces-test-gl
1282 - .llvmpipe-rules
1283 variables:
1284 LIBGL_ALWAYS_SOFTWARE: "true"
1285 GALLIUM_DRIVER: "llvmpipe"
1286 DEVICE_NAME: "gl-vmware-llvmpipe"
1287
1288 radv-polaris10-traces:
1289 extends:
1290 - .traces-test-vk
1291 - .test-radv
1292 - .test-manual
1293 variables:
1294 DEVICE_NAME: "vk-amd-polaris10"
1295 tags:
1296 - polaris10
1297
1298 virgl-traces:
1299 extends:
1300 - .traces-test-gl
1301 - .virgl-rules
1302 variables:
1303 LIBGL_ALWAYS_SOFTWARE: "true"
1304 GALLIUM_DRIVER: "virpipe"
1305 DEVICE_NAME: "gl-virgl"
1306 MESA_GLES_VERSION_OVERRIDE: "3.1"
1307 MESA_GLSL_VERSION_OVERRIDE: "310"