gitlab-ci: Fold scons-swr job into scons job
[mesa.git] / .gitlab-ci.yml
1 variables:
2 UPSTREAM_REPO: mesa/mesa
3
4 include:
5 - project: 'wayland/ci-templates'
6 ref: b7030c2cd0d6ccc5f6d4f8299bafa4daa9240d71
7 file: '/templates/debian.yml'
8 - local: '.gitlab-ci/lava-gitlab-ci.yml'
9 - local: '.gitlab-ci/test-source-dep.yml'
10
11 stages:
12 - container
13 - meson-x86_64
14 - scons
15 - meson-misc
16 - llvmpipe
17 - softpipe
18 - freedreno
19 - panfrost
20 - misc-tests
21 - success
22
23
24 # When to automatically run the CI
25 .ci-run-policy:
26 rules:
27 # Run pipeline by default for merge requests changing files affecting it
28 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
29 changes: &paths
30 - VERSION
31 - bin/**/*
32 # GitLab CI
33 - .gitlab-ci.yml
34 - .gitlab-ci/**/*
35 # Meson
36 - meson*
37 - build-support/**/*
38 - subprojects/**/*
39 # SCons
40 - SConstruct
41 - scons/**/*
42 - common.py
43 # Source code
44 - include/**/*
45 - src/**/*
46 when: on_success
47 # Run pipeline by default in the main project if files affecting it were
48 # changed
49 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
50 changes:
51 *paths
52 when: on_success
53 # Allow triggering jobs manually on branches of forked projects
54 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
55 when: manual
56 # Otherwise, most jobs won't run
57 - when: never
58 retry:
59 max: 2
60 when:
61 - runner_system_failure
62 # Cancel CI run if a newer commit is pushed to the same branch
63 interruptible: true
64
65 success:
66 stage: success
67 image: debian:stable-slim
68 only:
69 - merge_requests
70 except:
71 changes:
72 *paths
73 variables:
74 GIT_STRATEGY: none
75 script:
76 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
77
78
79 .ci-deqp-artifacts:
80 artifacts:
81 name: "mesa_${CI_JOB_NAME}"
82 when: always
83 untracked: false
84 paths:
85 # Watch out! Artifacts are relative to the build dir.
86 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
87 - artifacts
88
89 # Build the CI docker images.
90 #
91 # DEBIAN_TAG is the tag of the docker image used by later stage jobs. If the
92 # image doesn't exist yet, the container stage job generates it.
93 #
94 # In order to generate a new image, one should generally change the tag.
95 # While removing the image from the registry would also work, that's not
96 # recommended except for ephemeral images during development: Replacing
97 # an image after a significant amount of time might pull in newer
98 # versions of gcc/clang or other packages, which might break the build
99 # with older commits using the same tag.
100 #
101 # After merging a change resulting in generating a new image to the
102 # main repository, it's recommended to remove the image from the source
103 # repository's container registry, so that the image from the main
104 # repository's registry will be used there as well.
105
106 .container:
107 stage: container
108 extends:
109 - .ci-run-policy
110 variables:
111 DEBIAN_VERSION: buster-slim
112 REPO_SUFFIX: $CI_JOB_NAME
113 DEBIAN_EXEC: 'bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
114 # no need to pull the whole repo to build the container image
115 GIT_STRATEGY: none
116
117 # Debian 10 based x86 build image
118 x86_build:
119 extends:
120 - .debian@container-ifnot-exists
121 - .container
122 variables:
123 DEBIAN_TAG: &x86_build "2020-03-13"
124
125 .use-x86_build:
126 variables:
127 TAG: *x86_build
128 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
129 needs:
130 - x86_build
131
132 # Debian 10 based x86 test image for GL
133 x86_test-gl:
134 extends: x86_build
135 variables:
136 DEBIAN_TAG: &x86_test-gl "2020-03-13"
137
138 # Debian 10 based x86 test image for VK
139 x86_test-vk:
140 extends: x86_build
141 variables:
142 DEBIAN_TAG: &x86_test-vk "2020-03-16"
143
144 # Debian 9 based x86 build image (old LLVM)
145 x86_build_old:
146 extends: x86_build
147 variables:
148 DEBIAN_TAG: &x86_build_old "2019-09-18"
149 DEBIAN_VERSION: stretch-slim
150
151 .use-x86_build_old:
152 variables:
153 TAG: *x86_build_old
154 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
155 needs:
156 - x86_build_old
157
158 # Debian 10 based ARM build image
159 arm_build:
160 extends:
161 - .debian@container-ifnot-exists@arm64v8
162 - .container
163 variables:
164 DEBIAN_TAG: &arm_build "2020-03-13"
165
166 .use-arm_build:
167 variables:
168 TAG: *arm_build
169 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
170 needs:
171 - arm_build
172
173 # Debian 10 based ARM test image
174 arm_test:
175 extends: arm_build
176 variables:
177 DEBIAN_TAG: &arm_test "2020-01-30"
178
179 .use-arm_test:
180 variables:
181 TAG: *arm_test
182 image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG"
183 needs:
184 - meson-arm64
185 - arm_test
186
187
188 # BUILD
189
190 # Shared between windows and Linux
191 .build-common:
192 extends: .ci-run-policy
193 artifacts:
194 name: "mesa_${CI_JOB_NAME}"
195 when: always
196 paths:
197 - _build/meson-logs/*.txt
198 # scons:
199 - build/*/config.log
200 - shader-db
201
202 # Just Linux
203 .build-linux:
204 extends: .build-common
205 variables:
206 CCACHE_COMPILERCHECK: "content"
207 CCACHE_COMPRESS: "true"
208 CCACHE_DIR: /cache/mesa/ccache
209 # Use ccache transparently, and print stats before/after
210 before_script:
211 - export PATH="/usr/lib/ccache:$PATH"
212 - export CCACHE_BASEDIR="$PWD"
213 - ccache --show-stats
214 after_script:
215 - ccache --show-stats
216
217 .build-windows:
218 extends: .build-common
219 tags:
220 - mesa-windows
221 cache:
222 key: ${CI_JOB_NAME}
223 paths:
224 - subprojects/packagecache
225
226 .meson-build:
227 extends:
228 - .build-linux
229 - .use-x86_build
230 stage: meson-x86_64
231 variables:
232 LLVM_VERSION: 9
233 script:
234 - .gitlab-ci/meson-build.sh
235
236 .scons-build:
237 extends:
238 - .build-linux
239 - .use-x86_build
240 stage: scons
241 variables:
242 SCONSFLAGS: "-j4"
243 script:
244 - .gitlab-ci/scons-build.sh
245
246 meson-testing:
247 extends:
248 - .meson-build
249 - .ci-deqp-artifacts
250 variables:
251 UNWIND: "true"
252 DRI_LOADERS: >
253 -D glx=dri
254 -D gbm=true
255 -D egl=true
256 -D platforms=x11,drm,surfaceless
257 GALLIUM_ST: >
258 -D dri3=true
259 GALLIUM_DRIVERS: "swrast"
260 VULKAN_DRIVERS: amd
261 BUILDTYPE: "debugoptimized"
262 EXTRA_OPTION: >
263 -D werror=true
264 script:
265 - .gitlab-ci/meson-build.sh
266 - .gitlab-ci/prepare-artifacts.sh
267
268 meson-main:
269 extends: .meson-build
270 variables:
271 UNWIND: "true"
272 DRI_LOADERS: >
273 -D glx=dri
274 -D gbm=true
275 -D egl=true
276 -D platforms=x11,wayland,drm,surfaceless
277 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
278 GALLIUM_ST: >
279 -D dri3=true
280 -D gallium-extra-hud=true
281 -D gallium-vdpau=true
282 -D gallium-xvmc=true
283 -D gallium-omx=bellagio
284 -D gallium-va=true
285 -D gallium-xa=true
286 -D gallium-nine=true
287 -D gallium-opencl=disabled
288 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
289 EXTRA_OPTION: >
290 -D osmesa=gallium
291 -D tools=all
292 script:
293 - .gitlab-ci/meson-build.sh
294 - .gitlab-ci/run-shader-db.sh
295
296 .meson-cross:
297 extends:
298 - .meson-build
299 stage: meson-misc
300 variables:
301 UNWIND: "false"
302 DRI_LOADERS: >
303 -D glx=disabled
304 -D gbm=false
305 -D egl=true
306 -D platforms=surfaceless
307 -D osmesa=none
308 GALLIUM_ST: >
309 -D dri3=false
310 -D gallium-vdpau=false
311 -D gallium-xvmc=false
312 -D gallium-omx=disabled
313 -D gallium-va=false
314 -D gallium-xa=false
315 -D gallium-nine=false
316 LLVM_VERSION: "8"
317
318 .meson-arm:
319 extends:
320 - .meson-cross
321 - .use-arm_build
322 variables:
323 VULKAN_DRIVERS: freedreno
324 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
325 BUILDTYPE: "debugoptimized"
326 tags:
327 - aarch64
328
329 meson-armhf:
330 extends:
331 - .meson-arm
332 - .ci-deqp-artifacts
333 variables:
334 CROSS: armhf
335 LLVM_VERSION: "7"
336 EXTRA_OPTION: >
337 -D llvm=false
338 script:
339 - .gitlab-ci/meson-build.sh
340 - .gitlab-ci/prepare-artifacts.sh
341
342 meson-arm64:
343 extends:
344 - .meson-arm
345 - .ci-deqp-artifacts
346 variables:
347 VULKAN_DRIVERS: "freedreno"
348 EXTRA_OPTION: >
349 -D llvm=false
350 script:
351 - .gitlab-ci/meson-build.sh
352 - .gitlab-ci/prepare-artifacts.sh
353
354 meson-arm64-build-test:
355 extends:
356 - .meson-arm
357 - .ci-deqp-artifacts
358 variables:
359 VULKAN_DRIVERS: "amd"
360 script:
361 - .gitlab-ci/meson-build.sh
362
363 meson-clang:
364 extends: .meson-build
365 variables:
366 UNWIND: "true"
367 DRI_LOADERS: >
368 -D glvnd=true
369 DRI_DRIVERS: "auto"
370 GALLIUM_DRIVERS: "auto"
371 VULKAN_DRIVERS: intel,amd,freedreno
372 CC: "ccache clang-9"
373 CXX: "ccache clang++-9"
374
375 .meson-windows:
376 extends:
377 - .build-windows
378 stage: meson-misc
379 before_script:
380 - $ENV:ARCH = "x86"
381 - $ENV:VERSION = "2019\Community"
382 script:
383 - cmd /C .gitlab-ci\meson-build.bat
384
385 scons-win64:
386 extends: .scons-build
387 variables:
388 SCONS_TARGET: platform=windows machine=x86_64
389 SCONS_CHECK_COMMAND: "true"
390
391 meson-clover:
392 extends: .meson-build
393 variables:
394 UNWIND: "true"
395 DRI_LOADERS: >
396 -D glx=disabled
397 -D egl=false
398 -D gbm=false
399 GALLIUM_ST: >
400 -D dri3=false
401 -D gallium-vdpau=false
402 -D gallium-xvmc=false
403 -D gallium-omx=disabled
404 -D gallium-va=false
405 -D gallium-xa=false
406 -D gallium-nine=false
407 -D gallium-opencl=icd
408 script:
409 - export GALLIUM_DRIVERS="r600,radeonsi"
410 - .gitlab-ci/meson-build.sh
411 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
412 - export GALLIUM_DRIVERS="i915,r600"
413 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
414 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
415
416 meson-clover-old-llvm:
417 extends:
418 - meson-clover
419 - .use-x86_build_old
420 variables:
421 UNWIND: "false"
422 DRI_LOADERS: >
423 -D glx=disabled
424 -D egl=false
425 -D gbm=false
426 -D platforms=drm,surfaceless
427 GALLIUM_DRIVERS: "i915,r600"
428 script:
429 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
430 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
431 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
432
433 meson-vulkan:
434 extends: .meson-build
435 variables:
436 UNWIND: "false"
437 DRI_LOADERS: >
438 -D glx=disabled
439 -D gbm=false
440 -D egl=false
441 -D platforms=x11,wayland,drm
442 -D osmesa=none
443 GALLIUM_ST: >
444 -D dri3=true
445 -D gallium-vdpau=false
446 -D gallium-xvmc=false
447 -D gallium-omx=disabled
448 -D gallium-va=false
449 -D gallium-xa=false
450 -D gallium-nine=false
451 -D gallium-opencl=disabled
452 -D b_sanitize=undefined
453 -D c_args=-fno-sanitize-recover=all
454 -D cpp_args=-fno-sanitize-recover=all
455 UBSAN_OPTIONS: "print_stacktrace=1"
456 VULKAN_DRIVERS: intel,amd,freedreno
457 EXTRA_OPTION: >
458 -D vulkan-overlay-layer=true
459 -D werror=true
460
461 # While the main point of this build is testing the i386 cross build,
462 # we also use this one to test some other options that are exclusive
463 # with meson-main's choices (classic swrast and osmesa)
464 meson-i386:
465 extends: .meson-cross
466 variables:
467 CROSS: i386
468 VULKAN_DRIVERS: intel,amd
469 DRI_DRIVERS: "swrast"
470 GALLIUM_DRIVERS: "iris"
471 EXTRA_OPTION: >
472 -D vulkan-overlay-layer=true
473 -D osmesa=classic
474 -D werror=true
475 script:
476 - dpkg -i /var/cache/apt/archives/$CROSS/*.deb
477 - .gitlab-ci/meson-build.sh
478
479 meson-s390x:
480 extends:
481 - .meson-cross
482 variables:
483 CROSS: s390x
484 GALLIUM_DRIVERS: "swrast"
485 script:
486 # For unknown reasons "too many" installed i386 libraries cause qemu to
487 # crash while executing llvm-config for s390x.
488 - apt-get remove -y libglib2.0-0:i386
489 - dpkg -i /var/cache/apt/archives/$CROSS/*.deb
490 - .gitlab-ci/meson-build.sh
491
492 meson-ppc64el:
493 extends:
494 - meson-s390x
495 variables:
496 CROSS: ppc64el
497 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
498 VULKAN_DRIVERS: "amd"
499
500 meson-mingw32-x86_64:
501 extends: .meson-build
502 stage: meson-misc
503 variables:
504 UNWIND: "false"
505 DRI_DRIVERS: ""
506 GALLIUM_DRIVERS: "swrast"
507 EXTRA_OPTION: >
508 -Dllvm=false
509 -Dosmesa=gallium
510 --cross-file=.gitlab-ci/x86_64-w64-mingw32
511
512 scons:
513 extends: .scons-build
514 variables:
515 SCONS_TARGET: "llvm=1 swr=1"
516 SCONS_CHECK_COMMAND: "scons force_scons=1 ${SCONS_TARGET} check"
517 script:
518 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
519 - LLVM_VERSION=9 .gitlab-ci/scons-build.sh
520
521 scons-old-llvm:
522 extends:
523 - scons
524 - .use-x86_build_old
525 script:
526 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
527
528 .test:
529 extends:
530 - .ci-run-policy
531 variables:
532 GIT_STRATEGY: none # testing doesn't build anything from source
533 before_script:
534 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
535 - rm -rf install
536 - tar -xf artifacts/install.tar
537 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
538 artifacts:
539 when: always
540 name: "mesa_${CI_JOB_NAME}"
541 paths:
542 - results/
543 dependencies:
544 - meson-testing
545
546 .test-gl:
547 extends:
548 - .test
549 variables:
550 TAG: *x86_test-gl
551 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
552 needs:
553 - meson-testing
554 - x86_test-gl
555
556 .test-vk:
557 extends:
558 - .test
559 variables:
560 TAG: *x86_test-vk
561 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
562 needs:
563 - meson-testing
564 - x86_test-vk
565
566 .piglit-test:
567 extends:
568 - .test-gl
569 - .llvmpipe-rules
570 artifacts:
571 when: on_failure
572 name: "mesa_${CI_JOB_NAME}"
573 paths:
574 - summary/
575 variables:
576 LIBGL_ALWAYS_SOFTWARE: 1
577 PIGLIT_NO_WINDOW: 1
578 script:
579 - artifacts/piglit/run.sh
580
581 piglit-quick_gl:
582 extends: .piglit-test
583 variables:
584 LP_NUM_THREADS: 0
585 NIR_VALIDATE: 0
586 PIGLIT_OPTIONS: >
587 --process-isolation false
588 -x arb_gpu_shader5
589 -x egl_ext_device_
590 -x egl_ext_platform_device
591 -x ext_timer_query@time-elapsed
592 -x glx-multithread-clearbuffer
593 -x glx-multithread-shader-compile
594 -x max-texture-size
595 -x maxsize
596 PIGLIT_PROFILES: quick_gl
597
598 piglit-glslparser:
599 extends: .piglit-test
600 variables:
601 LP_NUM_THREADS: 0
602 NIR_VALIDATE: 0
603 PIGLIT_PROFILES: glslparser
604
605 piglit-quick_shader:
606 extends: .piglit-test
607 variables:
608 LP_NUM_THREADS: 1
609 NIR_VALIDATE: 0
610 PIGLIT_PROFILES: quick_shader
611
612 .deqp-test:
613 variables:
614 DEQP_SKIPS: deqp-default-skips.txt
615 script:
616 - ./artifacts/deqp-runner.sh
617
618 .deqp-test-gl:
619 extends:
620 - .test-gl
621 - .deqp-test
622
623 .deqp-test-vk:
624 extends:
625 - .test-vk
626 - .deqp-test
627 variables:
628 DEQP_VER: vk
629
630 .fossilize-test:
631 extends: .test-vk
632 script:
633 - ./artifacts/fossilize-runner.sh
634
635 llvmpipe-gles2:
636 variables:
637 DEQP_VER: gles2
638 DEQP_PARALLEL: 4
639 NIR_VALIDATE: 0
640 # Don't use threads inside llvmpipe, we've already got all 4 cores
641 # busy with DEQP_PARALLEL.
642 LP_NUM_THREADS: 0
643 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
644 LIBGL_ALWAYS_SOFTWARE: "true"
645 extends:
646 - .deqp-test-gl
647 - .llvmpipe-rules
648
649 softpipe-gles2:
650 extends:
651 - llvmpipe-gles2
652 - .softpipe-rules
653 variables:
654 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
655 DEQP_SKIPS: deqp-softpipe-skips.txt
656 GALLIUM_DRIVER: "softpipe"
657
658 softpipe-gles3:
659 parallel: 2
660 variables:
661 DEQP_VER: gles3
662 extends: softpipe-gles2
663
664 softpipe-gles31:
665 parallel: 4
666 variables:
667 DEQP_VER: gles31
668 extends: softpipe-gles2
669
670 arm64_a630_gles2:
671 extends:
672 - .deqp-test-gl
673 - .use-arm_test
674 - .freedreno-rules
675 variables:
676 DEQP_VER: gles2
677 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
678 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
679 NIR_VALIDATE: 0
680 DEQP_PARALLEL: 4
681 FLAKES_CHANNEL: "#freedreno-ci"
682 tags:
683 - mesa-cheza
684 dependencies:
685 - meson-arm64
686
687 arm64_a630_gles31:
688 extends: arm64_a630_gles2
689 variables:
690 DEQP_VER: gles31
691
692 arm64_a630_gles3:
693 extends: arm64_a630_gles2
694 variables:
695 DEQP_VER: gles3
696
697 .baremetal-test:
698 extends:
699 - .ci-run-policy
700 stage: test
701
702 arm64_a306_gles2:
703 extends:
704 - .baremetal-test
705 - .use-arm_build
706 stage: freedreno
707 variables:
708 BM_KERNEL: /lava-files/Image
709 BM_DTB: /lava-files/apq8016-sbc.dtb
710 BM_ROOTFS: /lava-files/rootfs-arm64
711 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
712 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
713 DEQP_SKIPS: deqp-freedreno-a307-skips.txt
714 DEQP_VER: gles2
715 DEQP_PARALLEL: 4
716 script:
717 - .gitlab-ci/bare-metal/fastboot.sh
718 needs:
719 - meson-arm64
720 tags:
721 - google-freedreno-db410c
722
723 # Disabled due to flaky results
724 .arm64_a306_gles3:
725 extends:
726 - arm64_a306_gles2
727 parallel: 8
728 variables:
729 DEQP_VER: gles3
730
731 # RADV CI
732 .test-radv:
733 extends: .radv-rules
734 stage: misc-tests
735 variables:
736 VK_DRIVER: radeon
737 RADV_DEBUG: checkir
738
739 .test-radv-unsafe:
740 extends: .test-radv
741 # Can only be triggered manually on personal branches because RADV is the only
742 # driver that does Vulkan testing at the moment.
743 rules:
744 # Never test RADV by default in the main project.
745 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
746 when: never
747 # Never test RADV by default for merge requests.
748 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
749 when: never
750 # Otherwise, allow testing RADV manually for personal branches.
751 - when: manual
752
753 .test-radv-fossilize:
754 extends:
755 - .fossilize-test
756 - .test-radv
757
758 radv_polaris10_vkcts:
759 extends:
760 - .deqp-test-vk
761 - .test-radv-unsafe
762 variables:
763 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
764 tags:
765 - polaris10
766
767 radv-polaris10-fossils:
768 extends: .test-radv-fossilize
769 variables:
770 RADV_FORCE_FAMILY: "polaris10" # Force creating a null device
771
772 # Traces CI
773 .traces-test:
774 stage: misc-tests
775 cache:
776 key: ${CI_JOB_NAME}
777 paths:
778 - traces-db/
779
780 .traces-test-gl:
781 extends:
782 - .test-gl
783 - .traces-test
784 script:
785 - ./artifacts/tracie-runner-gl.sh
786
787 .traces-test-vk:
788 extends:
789 - .test-vk
790 - .traces-test
791 script:
792 - ./artifacts/tracie-runner-vk.sh
793
794 llvmpipe-traces:
795 extends:
796 - .traces-test-gl
797 - .llvmpipe-rules
798 variables:
799 LIBGL_ALWAYS_SOFTWARE: "true"
800 GALLIUM_DRIVER: "llvmpipe"
801 DEVICE_NAME: "gl-vmware-llvmpipe"
802
803 radv-polaris10-traces:
804 extends:
805 - .traces-test-vk
806 - .test-radv-unsafe
807 variables:
808 DEVICE_NAME: "vk-amd-polaris10"
809 tags:
810 - polaris10