blob: 75b2578b6c83ccb4f5db7a02667743e8fb93ee3d [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -08002 FDO_UPSTREAM_REPO: mesa/mesa
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +02003
4include:
Eric Anholtaf7dca32020-03-06 13:23:20 -08005 - project: 'freedesktop/ci-templates'
6 ref: a1699326519fd28526485ce93464e33423bac564
Michel Dänzerd00b1c42019-04-02 16:56:54 +02007 file: '/templates/debian.yml'
Dylan Baker19851c92019-10-23 14:36:19 -07008 - local: '.gitlab-ci/lava-gitlab-ci.yml'
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +01009 - local: '.gitlab-ci/test-source-dep.yml'
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020010
Eric Engestrom329f5cd2019-01-20 11:21:45 +000011stages:
Eric Engestrom81b98e92019-10-14 23:04:14 +010012 - container
Michel Dänzercc9493f2020-02-27 18:27:56 +010013 - meson-x86_64
14 - scons
15 - meson-misc
16 - llvmpipe
17 - softpipe
18 - freedreno
19 - panfrost
Samuel Pitoiset48e92032020-03-06 08:39:25 +010020 - radv
21 - lima
Michel Dänzer8775b742020-01-13 09:45:57 +010022 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000023
24
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000025# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020026.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020027 rules:
Michel Dänzer8775b742020-01-13 09:45:57 +010028 # Run pipeline by default for merge requests changing files affecting it
29 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
30 changes: &paths
31 - VERSION
32 - bin/**/*
33 # GitLab CI
34 - .gitlab-ci.yml
35 - .gitlab-ci/**/*
36 # Meson
37 - meson*
38 - build-support/**/*
39 - subprojects/**/*
40 # SCons
41 - SConstruct
42 - scons/**/*
43 - common.py
44 # Source code
45 - include/**/*
46 - src/**/*
47 when: on_success
48 # Run pipeline by default in the main project if files affecting it were
49 # changed
50 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
51 changes:
52 *paths
53 when: on_success
54 # Allow triggering jobs manually on branches of forked projects
Michel Dänzer5a6a88f2020-01-20 18:39:50 +010055 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer8775b742020-01-13 09:45:57 +010056 when: manual
57 # Otherwise, most jobs won't run
58 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +010059 retry:
60 max: 2
61 when:
62 - runner_system_failure
Eric Engestromac78ca42019-11-12 23:42:21 +000063 # Cancel CI run if a newer commit is pushed to the same branch
64 interruptible: true
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000065
Michel Dänzer8775b742020-01-13 09:45:57 +010066success:
67 stage: success
68 image: debian:stable-slim
69 only:
70 - merge_requests
71 except:
72 changes:
73 *paths
Michel Dänzer2dd0cc62020-01-20 18:34:34 +010074 variables:
75 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +010076 script:
77 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
78
79
Michel Dänzere426f402019-09-06 17:35:52 +020080.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -070081 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +010082 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -070083 when: always
84 untracked: false
85 paths:
86 # Watch out! Artifacts are relative to the build dir.
87 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
88 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000089
Tomeu Vizoso22d97642019-12-17 11:50:14 +010090# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +010091#
Eric Anholtaf7dca32020-03-06 13:23:20 -080092# FDO_DISTRIBUTION_TAG is the tag of the docker image used by later stage jobs. If the
Michel Dänzerc6c76522019-11-11 18:13:28 +010093# image doesn't exist yet, the container stage job generates it.
94#
95# In order to generate a new image, one should generally change the tag.
96# While removing the image from the registry would also work, that's not
97# recommended except for ephemeral images during development: Replacing
98# an image after a significant amount of time might pull in newer
99# versions of gcc/clang or other packages, which might break the build
100# with older commits using the same tag.
101#
102# After merging a change resulting in generating a new image to the
103# main repository, it's recommended to remove the image from the source
104# repository's container registry, so that the image from the main
105# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200106
Eric Engestrom81b98e92019-10-14 23:04:14 +0100107.container:
108 stage: container
109 extends:
110 - .ci-run-policy
111 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800112 FDO_DISTRIBUTION_VERSION: buster-slim
113 FDO_REPO_SUFFIX: $CI_JOB_NAME
114 FDO_DISTRIBUTION_EXEC: 'bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
Eric Engestrom81b98e92019-10-14 23:04:14 +0100115 # no need to pull the whole repo to build the container image
116 GIT_STRATEGY: none
117
Michel Dänzerc6c76522019-11-11 18:13:28 +0100118# Debian 10 based x86 build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100119x86_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200120 extends:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800121 - .fdo.container-ifnot-exists@debian
Eric Engestrom81b98e92019-10-14 23:04:14 +0100122 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100123 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800124 FDO_DISTRIBUTION_TAG: &x86_build "2020-03-13"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000125
Michel Dänzer3a48f452019-11-13 17:43:41 +0100126.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100127 variables:
128 TAG: *x86_build
129 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200130 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100131 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200132
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100133# Debian 10 based x86 test image for GL
134x86_test-gl:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100135 extends: x86_build
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100136 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800137 FDO_DISTRIBUTION_TAG: &x86_test-gl "2020-03-13"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100138
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100139# Debian 10 based x86 test image for VK
140x86_test-vk:
141 extends: x86_build
142 variables:
Andres Gomez8bc3d652020-03-18 11:52:53 +0200143 FDO_DISTRIBUTION_TAG: &x86_test-vk "2020-03-23"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100144
Michel Dänzerc6c76522019-11-11 18:13:28 +0100145# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100146x86_build_old:
147 extends: x86_build
Michel Dänzer8a199922019-09-06 17:04:47 +0200148 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800149 FDO_DISTRIBUTION_TAG: &x86_build_old "2019-09-18"
150 FDO_DISTRIBUTION_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200151
Michel Dänzer3a48f452019-11-13 17:43:41 +0100152.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100153 variables:
154 TAG: *x86_build_old
155 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200156 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100157 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200158
Michel Dänzerc6c76522019-11-11 18:13:28 +0100159# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100160arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200161 extends:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800162 - .fdo.container-ifnot-exists@debian@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100163 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700164 variables:
Tomeu Vizosob1238492020-03-24 12:58:43 +0100165 FDO_DISTRIBUTION_TAG: &arm_build "2020-03-24"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000166
Michel Dänzerc6c76522019-11-11 18:13:28 +0100167.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100168 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100169 TAG: *arm_build
170 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
171 needs:
172 - arm_build
173
174# Debian 10 based ARM test image
175arm_test:
176 extends: arm_build
177 variables:
Eric Anholtaf7dca32020-03-06 13:23:20 -0800178 FDO_DISTRIBUTION_TAG: &arm_test "2020-01-30"
Michel Dänzerc6c76522019-11-11 18:13:28 +0100179
180.use-arm_test:
181 variables:
182 TAG: *arm_test
183 image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG"
184 needs:
185 - meson-arm64
186 - arm_test
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100187
Daniel Stone07885cb2020-03-24 11:11:36 +0000188# Native Windows docker builds
189#
190# Unlike the above Linux-based builds - including MinGW/SCons builds which
191# cross-compile for Windows - which use the freedesktop ci-templates, we
192# cannot use the same scheme here. As Windows lacks support for
193# Docker-in-Docker, and Podman does not run natively on Windows, we have
194# to open-code much of the same ourselves.
195#
196# This is achieved by first running in a native Windows shell instance
197# (host PowerShell) in the container stage to build and push the image,
198# then in the build stage by executing inside Docker.
199
200.windows-docker-vs2019:
201 variables:
202 WINDOWS_TAG: "2020-03-24"
203 WINDOWS_IMAGE: "$CI_REGISTRY_IMAGE/windows/x64_build:$WINDOWS_TAG"
204 WINDOWS_UPSTREAM_IMAGE: "$CI_REGISTRY/$FDO_UPSTREAM_REPO/windows/x64_build:$WINDOWS_TAG"
205
206windows_build_vs2019:
207 extends:
208 - .container
209 - .windows-docker-vs2019
210 stage: container
211 variables:
212 GIT_STRATEGY: fetch # we do actually need the full repository though
213 tags:
214 - windows
215 - shell
216 - "1809"
217 script:
218 - .\.gitlab-ci\windows\mesa_container.ps1 $CI_REGISTRY $CI_REGISTRY_USER $CI_REGISTRY_PASSWORD $WINDOWS_IMAGE $WINDOWS_UPSTREAM_IMAGE
219
220.use-windows_build_vs2019:
221 extends: .windows-docker-vs2019
222 image: "$WINDOWS_IMAGE"
223 needs:
224 - windows_build_vs2019
Eric Engestrom81b98e92019-10-14 23:04:14 +0100225
Eric Engestrom46d23c02019-01-20 11:26:53 +0000226# BUILD
227
Dylan Baker06e46472019-10-23 14:21:31 -0700228# Shared between windows and Linux
229.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100230 extends: .ci-run-policy
Eric Engestrom46d23c02019-01-20 11:26:53 +0000231 artifacts:
Michel Dänzer0103f022020-03-06 12:35:17 +0100232 name: "mesa_${CI_JOB_NAME}"
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700233 when: always
234 paths:
235 - _build/meson-logs/*.txt
236 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200237 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700238 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700239
240# Just Linux
241.build-linux:
242 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200243 variables:
244 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100245 CCACHE_COMPRESS: "true"
246 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000247 # Use ccache transparently, and print stats before/after
248 before_script:
249 - export PATH="/usr/lib/ccache:$PATH"
250 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100251 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000252 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000253 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000254
Dylan Baker19851c92019-10-23 14:36:19 -0700255.build-windows:
256 extends: .build-common
257 tags:
Daniel Stone07885cb2020-03-24 11:11:36 +0000258 - windows
259 - docker
260 - "1809"
Dylan Baker19851c92019-10-23 14:36:19 -0700261 cache:
262 key: ${CI_JOB_NAME}
263 paths:
264 - subprojects/packagecache
265
Eric Engestrom46d23c02019-01-20 11:26:53 +0000266.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100267 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700268 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100269 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100270 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100271 variables:
272 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000273 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200274 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000275
Eric Engestrom06b245b2019-01-23 15:46:10 +0000276.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100277 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700278 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100279 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100280 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000281 variables:
Eric Anholtcb655d22019-11-06 11:14:14 -0800282 SCONSFLAGS: "-j4"
Eric Engestrom06b245b2019-01-23 15:46:10 +0000283 script:
Michel Dänzer0374aac2019-09-12 11:34:43 +0200284 - .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000285
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100286meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200287 extends:
288 - .meson-build
289 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200290 variables:
291 UNWIND: "true"
292 DRI_LOADERS: >
293 -D glx=dri
294 -D gbm=true
295 -D egl=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100296 -D platforms=x11,drm,surfaceless
297 GALLIUM_ST: >
298 -D dri3=true
299 GALLIUM_DRIVERS: "swrast"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100300 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100301 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800302 EXTRA_OPTION: >
303 -D werror=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100304 script:
305 - .gitlab-ci/meson-build.sh
306 - .gitlab-ci/prepare-artifacts.sh
307
Michel Dänzerc56f0912020-03-12 12:29:40 +0100308meson-gallium:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100309 extends: .meson-build
310 variables:
311 UNWIND: "true"
312 DRI_LOADERS: >
313 -D glx=dri
314 -D gbm=true
315 -D egl=true
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200316 -D platforms=x11,wayland,drm,surfaceless
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200317 GALLIUM_ST: >
318 -D dri3=true
319 -D gallium-extra-hud=true
320 -D gallium-vdpau=true
321 -D gallium-xvmc=true
322 -D gallium-omx=bellagio
323 -D gallium-va=true
324 -D gallium-xa=true
325 -D gallium-nine=true
326 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100327 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200328 EXTRA_OPTION: >
329 -D osmesa=gallium
330 -D tools=all
Michel Dänzer59fcb012019-10-23 18:42:53 +0200331 script:
332 - .gitlab-ci/meson-build.sh
333 - .gitlab-ci/run-shader-db.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200334
Michel Dänzerc56f0912020-03-12 12:29:40 +0100335meson-classic:
336 extends: .meson-build
337 variables:
338 UNWIND: "true"
339 DRI_LOADERS: >
340 -D glx=dri
341 -D gbm=true
342 -D egl=true
343 -D platforms=x11,wayland,drm,surfaceless
344 DRI_DRIVERS: "auto"
345 EXTRA_OPTION: >
346 -D osmesa=classic
347 -D tools=all
348
Michel Dänzere5364462019-09-13 11:59:43 +0200349.meson-cross:
350 extends:
351 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100352 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200353 variables:
354 UNWIND: "false"
355 DRI_LOADERS: >
356 -D glx=disabled
357 -D gbm=false
358 -D egl=true
359 -D platforms=surfaceless
360 -D osmesa=none
361 GALLIUM_ST: >
362 -D dri3=false
363 -D gallium-vdpau=false
364 -D gallium-xvmc=false
365 -D gallium-omx=disabled
366 -D gallium-va=false
367 -D gallium-xa=false
368 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100369 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200370
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200371.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100372 extends:
373 - .meson-cross
374 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200375 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200376 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200377 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100378 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200379 tags:
380 - aarch64
381
382meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100383 extends:
384 - .meson-arm
385 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200386 variables:
387 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200388 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800389 EXTRA_OPTION: >
390 -D llvm=false
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100391 script:
392 - .gitlab-ci/meson-build.sh
393 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200394
395meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200396 extends:
397 - .meson-arm
398 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200399 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100400 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800401 EXTRA_OPTION: >
402 -D llvm=false
Michel Dänzer59fcb012019-10-23 18:42:53 +0200403 script:
404 - .gitlab-ci/meson-build.sh
405 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200406
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100407meson-arm64-build-test:
408 extends:
409 - .meson-arm
410 - .ci-deqp-artifacts
411 variables:
412 VULKAN_DRIVERS: "amd"
413 script:
414 - .gitlab-ci/meson-build.sh
415
Michel Dänzera2cce702019-03-20 15:58:31 +0100416meson-clang:
417 extends: .meson-build
418 variables:
419 UNWIND: "true"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100420 DRI_LOADERS: >
421 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100422 DRI_DRIVERS: "auto"
423 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100424 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100425 CC: "ccache clang-9"
426 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100427
Daniel Stone07885cb2020-03-24 11:11:36 +0000428meson-windows-vs2019:
Dylan Baker19851c92019-10-23 14:36:19 -0700429 extends:
430 - .build-windows
Daniel Stone07885cb2020-03-24 11:11:36 +0000431 - .use-windows_build_vs2019
Michel Dänzercc9493f2020-02-27 18:27:56 +0100432 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700433 script:
Daniel Stone07885cb2020-03-24 11:11:36 +0000434 - . .\.gitlab-ci\windows\mesa_build.ps1
Dylan Baker19851c92019-10-23 14:36:19 -0700435
Michel Dänzer82b30092019-05-03 18:19:25 +0200436scons-win64:
437 extends: .scons-build
438 variables:
439 SCONS_TARGET: platform=windows machine=x86_64
440 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000441
Michel Dänzer68977152019-05-03 10:58:48 +0200442meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000443 extends: .meson-build
444 variables:
445 UNWIND: "true"
446 DRI_LOADERS: >
447 -D glx=disabled
448 -D egl=false
449 -D gbm=false
450 GALLIUM_ST: >
451 -D dri3=false
452 -D gallium-vdpau=false
453 -D gallium-xvmc=false
454 -D gallium-omx=disabled
455 -D gallium-va=false
456 -D gallium-xa=false
457 -D gallium-nine=false
458 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200459 script:
460 - export GALLIUM_DRIVERS="r600,radeonsi"
461 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200462 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200463 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200464 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
465 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
466
467meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200468 extends:
469 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100470 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200471 variables:
472 UNWIND: "false"
473 DRI_LOADERS: >
474 -D glx=disabled
475 -D egl=false
476 -D gbm=false
477 -D platforms=drm,surfaceless
478 GALLIUM_DRIVERS: "i915,r600"
479 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200480 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
481 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
482 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000483
Michel Dänzer82b30092019-05-03 18:19:25 +0200484meson-vulkan:
485 extends: .meson-build
486 variables:
487 UNWIND: "false"
488 DRI_LOADERS: >
489 -D glx=disabled
490 -D gbm=false
491 -D egl=false
492 -D platforms=x11,wayland,drm
493 -D osmesa=none
494 GALLIUM_ST: >
495 -D dri3=true
496 -D gallium-vdpau=false
497 -D gallium-xvmc=false
498 -D gallium-omx=disabled
499 -D gallium-va=false
500 -D gallium-xa=false
501 -D gallium-nine=false
502 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200503 -D b_sanitize=undefined
504 -D c_args=-fno-sanitize-recover=all
505 -D cpp_args=-fno-sanitize-recover=all
506 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200507 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200508 EXTRA_OPTION: >
509 -D vulkan-overlay-layer=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800510 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200511
Eric Anholt11aa32a2019-07-11 12:58:28 -0700512meson-i386:
513 extends: .meson-cross
514 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100515 CROSS: i386
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100516 VULKAN_DRIVERS: intel,amd
Michel Dänzera0591862020-03-12 12:31:05 +0100517 GALLIUM_DRIVERS: "iris,r300,radeonsi,swrast,virgl"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700518 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700519 -D vulkan-overlay-layer=true
Eric Anholtf6e59912019-12-16 21:23:02 -0800520 -D werror=true
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100521 script:
522 - dpkg -i /var/cache/apt/archives/$CROSS/*.deb
523 - .gitlab-ci/meson-build.sh
Eric Anholt11aa32a2019-07-11 12:58:28 -0700524
Michel Dänzer65610ec2020-01-30 18:21:15 +0100525meson-s390x:
526 extends:
527 - .meson-cross
Michel Dänzer130c0ba2020-03-18 18:41:43 +0100528 tags:
529 - kvm
Michel Dänzer65610ec2020-01-30 18:21:15 +0100530 variables:
531 CROSS: s390x
532 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100533 script:
Samuel Pitoiset529c0ba2020-03-04 09:37:46 +0100534 # For unknown reasons "too many" installed i386 libraries cause qemu to
535 # crash while executing llvm-config for s390x.
536 - apt-get remove -y libglib2.0-0:i386
Michel Dänzer65610ec2020-01-30 18:21:15 +0100537 - dpkg -i /var/cache/apt/archives/$CROSS/*.deb
538 - .gitlab-ci/meson-build.sh
539
540meson-ppc64el:
541 extends:
542 - meson-s390x
543 variables:
544 CROSS: ppc64el
Michel Dänzer8be81f82020-01-31 16:07:10 +0100545 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100546 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100547
Dylan Baker449f8312019-10-11 09:04:14 -0700548meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700549 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100550 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700551 variables:
552 UNWIND: "false"
553 DRI_DRIVERS: ""
554 GALLIUM_DRIVERS: "swrast"
555 EXTRA_OPTION: >
556 -Dllvm=false
557 -Dosmesa=gallium
558 --cross-file=.gitlab-ci/x86_64-w64-mingw32
559
Michel Dänzer88e57962019-09-12 11:45:13 +0200560scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000561 extends: .scons-build
562 variables:
Michel Dänzerc3727ae2020-03-12 12:13:44 +0100563 SCONS_TARGET: "llvm=1 swr=1"
564 SCONS_CHECK_COMMAND: "scons force_scons=1 ${SCONS_TARGET} check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200565 script:
Dylan Baker54053bc2019-10-21 09:29:23 -0700566 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100567 - LLVM_VERSION=9 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200568
569scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200570 extends:
571 - scons
Michel Dänzer3a48f452019-11-13 17:43:41 +0100572 - .use-x86_build_old
Michel Dänzerbaa50242019-09-12 11:38:06 +0200573 script:
574 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700575
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100576.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200577 extends:
578 - .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700579 variables:
580 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200581 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700582 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
583 - rm -rf install
584 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100585 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700586 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800587 when: always
Michel Dänzer0103f022020-03-06 12:35:17 +0100588 name: "mesa_${CI_JOB_NAME}"
Eric Anholt46daaca2019-06-28 16:35:32 -0700589 paths:
590 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200591 dependencies:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100592 - meson-testing
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100593
594.test-gl:
595 extends:
596 - .test
597 variables:
598 TAG: *x86_test-gl
599 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200600 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100601 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100602 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700603
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100604.test-vk:
605 extends:
606 - .test
607 variables:
608 TAG: *x86_test-vk
609 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
610 needs:
611 - meson-testing
612 - x86_test-vk
613
Michel Dänzer576f7b62019-10-22 17:16:52 +0200614.piglit-test:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100615 extends:
616 - .test-gl
617 - .llvmpipe-rules
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100618 artifacts:
619 when: on_failure
Michel Dänzer0103f022020-03-06 12:35:17 +0100620 name: "mesa_${CI_JOB_NAME}"
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100621 paths:
622 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200623 variables:
624 LIBGL_ALWAYS_SOFTWARE: 1
625 PIGLIT_NO_WINDOW: 1
626 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100627 - install/piglit/run.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200628
629piglit-quick_gl:
630 extends: .piglit-test
631 variables:
632 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000633 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200634 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100635 --process-isolation false
Michel Dänzer576f7b62019-10-22 17:16:52 +0200636 -x arb_gpu_shader5
Eric Anholt3097efe2019-12-04 16:13:38 -0800637 -x egl_ext_device_
638 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800639 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200640 -x glx-multithread-clearbuffer
641 -x glx-multithread-shader-compile
642 -x max-texture-size
643 -x maxsize
644 PIGLIT_PROFILES: quick_gl
645
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100646piglit-glslparser:
647 extends: .piglit-test
648 variables:
649 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000650 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100651 PIGLIT_PROFILES: glslparser
652
653piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200654 extends: .piglit-test
655 variables:
656 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000657 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100658 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200659
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100660.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200661 variables:
662 DEQP_SKIPS: deqp-default-skips.txt
663 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100664 - ./install/deqp-runner.sh
Michel Dänzer576f7b62019-10-22 17:16:52 +0200665
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100666.deqp-test-gl:
667 extends:
668 - .test-gl
669 - .deqp-test
670
671.deqp-test-vk:
672 extends:
673 - .test-vk
674 - .deqp-test
675 variables:
676 DEQP_VER: vk
677
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100678.fossilize-test:
679 extends: .test-vk
680 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100681 - ./install/fossilize-runner.sh
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100682
Michel Dänzer71436f92020-03-03 18:17:12 +0100683llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700684 variables:
685 DEQP_VER: gles2
Eric Anholtf08c8102019-11-04 10:54:41 -0800686 DEQP_PARALLEL: 4
Dave Airliee6b2af52019-12-03 15:23:45 +1000687 NIR_VALIDATE: 0
Eric Anholtf08c8102019-11-04 10:54:41 -0800688 # Don't use threads inside llvmpipe, we've already got all 4 cores
689 # busy with DEQP_PARALLEL.
690 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700691 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
692 LIBGL_ALWAYS_SOFTWARE: "true"
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100693 extends:
694 - .deqp-test-gl
695 - .llvmpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700696
Michel Dänzer71436f92020-03-03 18:17:12 +0100697softpipe-gles2:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100698 extends:
699 - llvmpipe-gles2
700 - .softpipe-rules
Eric Anholt553cd822019-08-09 10:32:40 -0700701 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700702 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800703 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700704 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700705
Michel Dänzer71436f92020-03-03 18:17:12 +0100706softpipe-gles3:
Eric Anholt52843ec2019-11-05 10:31:29 -0800707 parallel: 2
Eric Anholt553cd822019-08-09 10:32:40 -0700708 variables:
709 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +0100710 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -0800711
Michel Dänzer71436f92020-03-03 18:17:12 +0100712softpipe-gles31:
Eric Anholt52843ec2019-11-05 10:31:29 -0800713 parallel: 4
714 variables:
715 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +0100716 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700717
Eric Anholt8edaa842020-03-19 11:45:01 -0700718# Rules for tests that should not be present in MRs or the main
719# project's pipeline (don't block marge or report red on
720# mesa/mesamaster) but should be present on pipelines in personal
721# branches (so you can opt in to running the flaky test when you want
722# to).
723.test-manual:
724 rules:
725 # Never test in the main project.
726 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
727 when: never
728 # Never test in merge requests.
729 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
730 when: never
731 # Otherwise, allow testing manually for personal branches.
732 - when: manual
733
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000734arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100735 extends:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100736 - .deqp-test-gl
Michel Dänzerc6c76522019-11-11 18:13:28 +0100737 - .use-arm_test
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100738 - .freedreno-rules
Eric Anholt6f0dc082019-06-28 16:35:32 -0700739 variables:
740 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700741 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
742 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
743 NIR_VALIDATE: 0
Eric Anholtdd76a6f2019-11-21 05:12:58 -0800744 DEQP_PARALLEL: 4
Rob Clarkfdaf7772019-11-17 11:33:01 -0800745 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt6f0dc082019-06-28 16:35:32 -0700746 tags:
747 - mesa-cheza
748 dependencies:
749 - meson-arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700750
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000751arm64_a630_gles31:
752 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700753 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200754 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700755
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000756arm64_a630_gles3:
757 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700758 variables:
759 DEQP_VER: gles3
760
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800761.baremetal-test:
762 extends:
763 - .ci-run-policy
764 stage: test
765
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800766arm64_a306_gles2:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800767 extends:
768 - .baremetal-test
769 - .use-arm_build
Eric Anholtf778c482020-03-18 09:51:03 -0700770 - .freedreno-rules
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800771 variables:
Eric Anholt4bc15e72020-03-03 14:38:09 -0800772 BM_KERNEL: /lava-files/Image.gz
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800773 BM_DTB: /lava-files/apq8016-sbc.dtb
774 BM_ROOTFS: /lava-files/rootfs-arm64
775 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800776 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800777 DEQP_SKIPS: deqp-freedreno-a307-skips.txt
778 DEQP_VER: gles2
779 DEQP_PARALLEL: 4
780 script:
781 - .gitlab-ci/bare-metal/fastboot.sh
782 needs:
783 - meson-arm64
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800784 tags:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800785 - google-freedreno-db410c
786
787# Disabled due to flaky results
Eric Anholt8edaa842020-03-19 11:45:01 -0700788arm64_a306_gles3:
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800789 extends:
790 - arm64_a306_gles2
Eric Anholt8edaa842020-03-19 11:45:01 -0700791 - .test-manual
Eric Anholtcf5ba9d2020-03-03 14:38:09 -0800792 parallel: 8
793 variables:
794 DEQP_VER: gles3
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800795
Eric Anholt4bc15e72020-03-03 14:38:09 -0800796arm64_a530_gles2:
797 extends:
798 - arm64_a306_gles2
799 stage: freedreno
800 variables:
801 BM_KERNEL: /lava-files/db820c-kernel
802 BM_DTB: /lava-files/db820c.dtb
803 BM_CMDLINE: "ip=dhcp console=ttyMSM0,115200n8"
804 DEQP_EXPECTED_FAILS: deqp-freedreno-a530-fails.txt
805 DEQP_SKIPS: deqp-freedreno-a530-skips.txt
806 tags:
807 - google-freedreno-db820c
808
809arm64_a530_gles3:
810 extends:
811 - arm64_a530_gles2
Eric Anholt8edaa842020-03-19 11:45:01 -0700812 - .test-manual
Eric Anholt4bc15e72020-03-03 14:38:09 -0800813 parallel: 6
814 variables:
815 DEQP_VER: gles3
816
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100817# RADV CI
818.test-radv:
Samuel Pitoiset8f554392020-03-09 17:53:51 +0100819 extends: .radv-rules
Samuel Pitoiset48e92032020-03-06 08:39:25 +0100820 stage: radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100821 variables:
822 VK_DRIVER: radeon
Samuel Pitoisetff2e11b2019-12-06 17:07:35 +0100823 RADV_DEBUG: checkir
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100824
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100825.test-radv-fossilize:
826 extends:
827 - .fossilize-test
828 - .test-radv
Samuel Pitoiset1517e582020-03-06 08:29:45 +0100829 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100830 - ./install/fossilize-runner.sh
831 - ACO_DEBUG=validateir,validatera RADV_PERFTEST=aco ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100832
Eric Anholt8edaa842020-03-19 11:45:01 -0700833# Can only be triggered manually on personal branches because RADV is the only
834# driver that does Vulkan testing at the moment.
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100835radv_polaris10_vkcts:
836 extends:
837 - .deqp-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -0700838 - .test-radv
839 - .test-manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100840 variables:
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100841 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
842 tags:
843 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200844
Samuel Pitoisete22d5622020-03-06 08:36:14 +0100845radv-fossils:
846 extends:
847 - .fossilize-test
848 - .test-radv
849 script:
850 # Polaris10
851 - export RADV_FORCE_FAMILY="polaris10"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100852 - ./install/fossilize-runner.sh
853 - ACO_DEBUG=validateir,validatera RADV_PERFTEST=aco ./install/fossilize-runner.sh
Samuel Pitoisete22d5622020-03-06 08:36:14 +0100854 # Vega10
855 - export RADV_FORCE_FAMILY="gfx900"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100856 - ./install/fossilize-runner.sh
857 - ACO_DEBUG=validateir,validatera RADV_PERFTEST=aco ./install/fossilize-runner.sh
Samuel Pitoisete22d5622020-03-06 08:36:14 +0100858 # Navi10
859 - export RADV_FORCE_FAMILY="gfx1010"
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100860 - ./install/fossilize-runner.sh
861 - ACO_DEBUG=validateir,validatera RADV_PERFTEST=aco ./install/fossilize-runner.sh
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100862
Andres Gomez0ac731b12020-02-20 18:26:30 +0200863# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200864.traces-test:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200865 cache:
866 key: ${CI_JOB_NAME}
867 paths:
Rohan Garg90a39af2020-02-28 13:48:53 +0100868 - traces-db/
Andres Gomez0ac731b12020-02-20 18:26:30 +0200869
870.traces-test-gl:
871 extends:
872 - .test-gl
873 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200874 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100875 - ./install/tracie-runner-gl.sh
Andres Gomez0ac731b12020-02-20 18:26:30 +0200876
877.traces-test-vk:
878 extends:
879 - .test-vk
880 - .traces-test
881 script:
Tomeu Vizoso92f3c512020-03-24 12:58:30 +0100882 - ./install/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200883
884llvmpipe-traces:
Pierre-Eric Pelloux-Prayer2a9d6fd2019-10-30 20:39:08 +0100885 extends:
886 - .traces-test-gl
887 - .llvmpipe-rules
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200888 variables:
889 LIBGL_ALWAYS_SOFTWARE: "true"
890 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +0200891 DEVICE_NAME: "gl-vmware-llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +0200892
893radv-polaris10-traces:
894 extends:
895 - .traces-test-vk
Eric Anholt8edaa842020-03-19 11:45:01 -0700896 - .test-radv
897 - .test-manual
Andres Gomez0ac731b12020-02-20 18:26:30 +0200898 variables:
899 DEVICE_NAME: "vk-amd-polaris10"
900 tags:
901 - polaris10