radv: Add winsys functions for timeline syncobj.
[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 variables:
923 DEQP_VER: gles3
924 extends: softpipe-gles2
925
926 softpipe-gles31:
927 parallel: 2
928 variables:
929 DEQP_VER: gles31
930 extends: softpipe-gles2
931
932 virgl-gles2-on-gl:
933 variables:
934 DEQP_VER: gles2
935 NIR_VALIDATE: 0
936 DEQP_NO_SAVE_RESULTS: 1
937 # Don't use threads inside llvmpipe, we've already got all cores
938 # busy at the deqp-runner level.
939 LP_NUM_THREADS: 0
940 DEQP_EXPECTED_FAILS: deqp-virgl-gl-fails.txt
941 DEQP_OPTIONS: "--deqp-log-images=disable"
942 LIBGL_ALWAYS_SOFTWARE: "true"
943 GALLIUM_DRIVER: "virpipe"
944 DEQP_EXPECTED_RENDERER: virgl
945 extends:
946 - .deqp-test-gl
947 - .virgl-rules
948
949 virgl-gles3-on-gl:
950 variables:
951 DEQP_VER: gles3
952 DEQP_RUNNER_OPTIONS: "--timeout 180"
953 extends: virgl-gles2-on-gl
954
955 virgl-gles31-on-gl:
956 parallel: 2
957 variables:
958 DEQP_VER: gles31
959 MESA_GLES_VERSION_OVERRIDE: "3.1"
960 MESA_GLSL_VERSION_OVERRIDE: "310"
961 MESA_EXTENSION_OVERRIDE: "-GL_OES_tessellation_shader"
962 extends: virgl-gles3-on-gl
963
964 virgl-gl30-on-gl:
965 variables:
966 DEQP_VER: gl30
967 extends: virgl-gles2-on-gl
968
969 virgl-gl31-on-gl:
970 variables:
971 DEQP_VER: gl31
972 extends: virgl-gles2-on-gl
973
974 virgl-gl32-on-gl:
975 variables:
976 DEQP_VER: gl32
977 extends: virgl-gles2-on-gl
978
979 # Rules for tests that should not be present in MRs or the main
980 # project's pipeline (don't block marge or report red on
981 # mesa/mesamaster) but should be present on pipelines in personal
982 # branches (so you can opt in to running the flaky test when you want
983 # to).
984 .test-manual:
985 rules:
986 - *ignore_scheduled_pipelines
987 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
988 changes:
989 *all_paths
990 when: manual
991 - when: never
992
993 virgl-gles2-on-gles:
994 variables:
995 VIRGL_HOST_API: GLES
996 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
997 extends:
998 - virgl-gles2-on-gl
999 - .test-manual
1000
1001 virgl-gles3-on-gles:
1002 variables:
1003 VIRGL_HOST_API: GLES
1004 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1005 extends:
1006 - virgl-gles3-on-gl
1007 - .test-manual
1008
1009 virgl-gles31-on-gles:
1010 variables:
1011 VIRGL_HOST_API: GLES
1012 DEQP_EXPECTED_FAILS: deqp-virgl-gles-fails.txt
1013 extends:
1014 - virgl-gles31-on-gl
1015 - .test-manual
1016
1017 arm64_a630_gles2:
1018 extends:
1019 - arm64_a306_gles2
1020 variables:
1021 BM_KERNEL: /lava-files/cheza-kernel
1022 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 root=/dev/nfs rw nfsrootdebug nfsroot=,tcp,nfsvers=4.2 init=/init"
1023 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
1024 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
1025 GIT_STRATEGY: none
1026 DEQP_EXPECTED_RENDERER: FD630
1027 DEQP_NO_SAVE_RESULTS: ""
1028 tags:
1029 - google-freedreno-cheza
1030 script:
1031 - ./install/bare-metal/cros-servo.sh
1032
1033 arm64_a630_gles31:
1034 extends: arm64_a630_gles2
1035 variables:
1036 DEQP_VER: gles31
1037 # gles31 is about 12 minutes with validation enabled.
1038 NIR_VALIDATE: 0
1039
1040 arm64_a630_gles3:
1041 extends: arm64_a630_gles2
1042 variables:
1043 DEQP_VER: gles3
1044 # gles3 is about 15 minutes with validation enabled.
1045 NIR_VALIDATE: 0
1046
1047 # We almost always manage to lower UBOs back to constant uploads in
1048 # the test suite, so get a little testing for it here.
1049 arm64_a630_noubo:
1050 extends: arm64_a630_gles31
1051 variables:
1052 DEQP_VER: gles31
1053 IR3_SHADER_DEBUG: nouboopt
1054 DEQP_CASELIST_FILTER: "functional.*ubo"
1055
1056 # The driver does some guessing as to whether to render using gmem
1057 # or bypass, and some GLES3.1 features interact with either one.
1058 # Do a little testing with gmem and bypass forced.
1059 arm64_a630_bypass:
1060 extends: arm64_a630_gles31
1061 variables:
1062 CI_NODE_INDEX: 1
1063 CI_NODE_TOTAL: 5
1064 FD_MESA_DEBUG: nogmem
1065 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1066
1067 arm64_a630_traces:
1068 extends:
1069 - arm64_a630_gles2
1070 variables:
1071 BARE_METAL_TEST_SCRIPT: "/install/tracie-runner-gl.sh"
1072 DEVICE_NAME: "freedreno-a630"
1073 TRACIE_NO_UNIT_TESTS: 1
1074 # This lets us run several more traces which don't use any features we're
1075 # missing.
1076 MESA_GLSL_VERSION_OVERRIDE: "460"
1077 MESA_GL_VERSION_OVERRIDE: "4.6"
1078
1079 # Along with checking gmem path, check that we don't get obvious nir
1080 # validation failures (though it's too expensive to have it on for the
1081 # full CTS)
1082 arm64_a630_gmem:
1083 extends: arm64_a630_gles31
1084 variables:
1085 CI_NODE_INDEX: 1
1086 CI_NODE_TOTAL: 5
1087 FD_MESA_DEBUG: nobypass
1088 NIR_VALIDATE: 1
1089
1090 arm64_a630_vk:
1091 extends: arm64_a630_gles2
1092 variables:
1093 DEQP_VER: vk
1094 CI_NODE_INDEX: 1
1095 CI_NODE_TOTAL: 50
1096 VK_DRIVER: freedreno
1097 # Force binning in the main run, which makes sure we render at
1098 # least 2 bins. This is the path that impacts the most different
1099 # features. However, we end up with flaky results in
1100 # dEQP-VK.binding_model.*.geometry and dEQP-VK.glsl.*_vertex.
1101 TU_DEBUG: forcebin
1102
1103 # Do a separate sysmem pass over the testcases that really affect sysmem
1104 # rendering. This is currently very flaky, leave it as an option for devs
1105 # to click play on in their branches.
1106 arm64_a630_vk_sysmem:
1107 extends:
1108 - arm64_a630_vk
1109 variables:
1110 CI_NODE_INDEX: 1
1111 CI_NODE_TOTAL: 10
1112 DEQP_CASELIST_FILTER: "dEQP-VK.renderpass.*"
1113 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-bypass-fails.txt
1114 TU_DEBUG: sysmem
1115
1116 .baremetal-test:
1117 extends:
1118 - .ci-run-policy
1119 - .test
1120 # Cancel job if a newer commit is pushed to the same branch
1121 interruptible: true
1122 stage: test
1123 artifacts:
1124 when: always
1125 name: "mesa_${CI_JOB_NAME}"
1126 paths:
1127 - results/
1128 - serial*.txt
1129
1130 arm64_a306_gles2:
1131 extends:
1132 - .baremetal-test
1133 - .use-arm64_test
1134 - .freedreno-rules
1135 variables:
1136 BM_KERNEL: /lava-files/Image.gz
1137 BM_DTB: /lava-files/apq8016-sbc.dtb
1138 BM_ROOTFS: /lava-files/rootfs-arm64
1139 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
1140 FLAKES_CHANNEL: "#freedreno-ci"
1141 BARE_METAL_TEST_SCRIPT: "/install/deqp-runner.sh"
1142 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
1143 DEQP_SKIPS: deqp-freedreno-a307-skips.txt
1144 DEQP_VER: gles2
1145 DEQP_PARALLEL: 4
1146 DEQP_EXPECTED_RENDERER: FD307
1147 # Since we can't get artifacts back yet, skip making them.
1148 DEQP_NO_SAVE_RESULTS: 1
1149 # NIR_VALIDATE=0 left intentionally unset as a3xx is fast enough at its small testsuite.
1150 script:
1151 - ./install/bare-metal/fastboot.sh
1152 needs:
1153 - arm64_test
1154 - meson-arm64
1155 tags:
1156 - google-freedreno-db410c
1157
1158 # Fractional run, single threaded, due to flaky results
1159 arm64_a306_gles3:
1160 extends:
1161 - arm64_a306_gles2
1162 variables:
1163 DEQP_VER: gles3
1164 DEQP_PARALLEL: 1
1165 CI_NODE_INDEX: 1
1166 CI_NODE_TOTAL: 25
1167 NIR_VALIDATE: 0
1168
1169 # Fractional runs with debug options. Note that since we're not
1170 # hitting the iommu faults, we can run in parallel (derive from gles2, not gles3).
1171 arm64_a306_gles3_options:
1172 extends: arm64_a306_gles2
1173 variables:
1174 DEQP_VER: gles3
1175 script:
1176 # Check that the non-constbuf UBO case works.
1177 - DEQP_RUN_SUFFIX=-nouboopt IR3_SHADER_DEBUG=nouboopt DEQP_CASELIST_FILTER="functional.*ubo" ./install/bare-metal/fastboot.sh
1178
1179 arm64_a530_gles2:
1180 extends:
1181 - arm64_a306_gles2
1182 variables:
1183 BM_KERNEL: /lava-files/db820c-kernel
1184 BM_DTB: /lava-files/db820c.dtb
1185 # Disable SMP because only CPU 0 is at a freq higher than 19mhz on
1186 # current upstream kernel.
1187 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8 nosmp"
1188 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
1189 DEQP_SKIPS: deqp-freedreno-a530-skips.txt
1190 DEQP_EXPECTED_RENDERER: FD530
1191 NIR_VALIDATE: 0
1192 tags:
1193 - google-freedreno-db820c
1194
1195 arm64_a530_gles3:
1196 extends:
1197 - arm64_a530_gles2
1198 variables:
1199 DEQP_VER: gles3
1200 DEQP_PARALLEL: 1
1201 CI_NODE_INDEX: 1
1202 CI_NODE_TOTAL: 40
1203
1204 arm64_a530_gles31:
1205 extends:
1206 - arm64_a530_gles3
1207 variables:
1208 DEQP_VER: gles31
1209 CI_NODE_INDEX: 1
1210 CI_NODE_TOTAL: 10
1211
1212 # RADV CI
1213 .test-radv:
1214 extends: .radv-rules
1215 stage: radv
1216 variables:
1217 VK_DRIVER: radeon
1218 ACO_DEBUG: validateir,validatera
1219
1220 # Can only be triggered manually on personal branches because RADV is the only
1221 # driver that does Vulkan testing at the moment.
1222 radv_polaris10_vkcts:
1223 extends:
1224 - .deqp-test-vk
1225 - .test-radv
1226 - .test-manual
1227 variables:
1228 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
1229 tags:
1230 - polaris10
1231
1232 radv-fossils:
1233 extends:
1234 - .fossilize-test
1235 - .test-radv
1236 script:
1237 # Pitcairn (GFX6)
1238 - export RADV_FORCE_FAMILY="pitcairn"
1239 - ./install/fossilize-runner.sh
1240 # Bonaire (GFX7)
1241 - export RADV_FORCE_FAMILY="bonaire"
1242 - ./install/fossilize-runner.sh
1243 # Polaris10 (GFX8)
1244 - export RADV_FORCE_FAMILY="polaris10"
1245 - ./install/fossilize-runner.sh
1246 # Vega10 (GFX9)
1247 - export RADV_FORCE_FAMILY="gfx900"
1248 - ./install/fossilize-runner.sh
1249 # Navi10 (GFX10)
1250 - export RADV_FORCE_FAMILY="gfx1010"
1251 - ./install/fossilize-runner.sh
1252
1253 # Traces CI
1254 .traces-test:
1255 cache:
1256 key: ${CI_JOB_NAME}
1257 paths:
1258 - traces-db/
1259 variables:
1260 TRACIE_UPLOAD_TO_MINIO: 1
1261
1262 .traces-test-gl:
1263 extends:
1264 - .test-gl
1265 - .traces-test
1266 script:
1267 - ./install/tracie-runner-gl.sh
1268
1269 .traces-test-vk:
1270 extends:
1271 - .test-vk
1272 - .traces-test
1273 script:
1274 - ./install/tracie-runner-vk.sh
1275
1276 llvmpipe-traces:
1277 extends:
1278 - .traces-test-gl
1279 - .llvmpipe-rules
1280 variables:
1281 LIBGL_ALWAYS_SOFTWARE: "true"
1282 GALLIUM_DRIVER: "llvmpipe"
1283 DEVICE_NAME: "gl-vmware-llvmpipe"
1284
1285 radv-polaris10-traces:
1286 extends:
1287 - .traces-test-vk
1288 - .test-radv
1289 - .test-manual
1290 variables:
1291 DEVICE_NAME: "vk-amd-polaris10"
1292 tags:
1293 - polaris10
1294
1295 radv-raven-traces:
1296 extends:
1297 - .traces-test-vk
1298 - .test-radv
1299 - .test-manual
1300 variables:
1301 DEVICE_NAME: "vk-amd-raven"
1302 tags:
1303 - raven
1304
1305 virgl-traces:
1306 extends:
1307 - .traces-test-gl
1308 - .virgl-rules
1309 variables:
1310 LIBGL_ALWAYS_SOFTWARE: "true"
1311 GALLIUM_DRIVER: "virpipe"
1312 DEVICE_NAME: "gl-virgl"
1313 MESA_GLES_VERSION_OVERRIDE: "3.1"
1314 MESA_GLSL_VERSION_OVERRIDE: "310"