blob: 1272d5371235170e173016a4634ebd87b3a2db4f [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +02002 UPSTREAM_REPO: mesa/mesa
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +02003
4include:
5 - project: 'wayland/ci-templates'
Michel Dänzer67027782019-11-07 20:25:10 +01006 # Must be the same as in .gitlab-ci/lava-gitlab-ci.yml
Michel Dänzer0c88d592019-12-03 12:38:59 +01007 ref: 0a9bdd33a98f05af6761ab118b5074952242aab0
Michel Dänzerd00b1c42019-04-02 16:56:54 +02008 file: '/templates/debian.yml'
Dylan Baker19851c92019-10-23 14:36:19 -07009 - local: '.gitlab-ci/lava-gitlab-ci.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
Eric Engestroma0f8a072019-09-11 18:51:46 +010013 - build
Eric Anholt46daaca2019-06-28 16:35:32 -070014 - test
Michel Dänzer8775b742020-01-13 09:45:57 +010015 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000016
17
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000018# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020019.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020020 rules:
Michel Dänzer8775b742020-01-13 09:45:57 +010021 # Run pipeline by default for merge requests changing files affecting it
22 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
23 changes: &paths
24 - VERSION
25 - bin/**/*
26 # GitLab CI
27 - .gitlab-ci.yml
28 - .gitlab-ci/**/*
29 # Meson
30 - meson*
31 - build-support/**/*
32 - subprojects/**/*
33 # SCons
34 - SConstruct
35 - scons/**/*
36 - common.py
37 # Source code
38 - include/**/*
39 - src/**/*
40 when: on_success
41 # Run pipeline by default in the main project if files affecting it were
42 # changed
43 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
44 changes:
45 *paths
46 when: on_success
47 # Allow triggering jobs manually on branches of forked projects
48 - if: '$CI_PROJECT_PATH != "mesa/mesa"'
49 if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
50 when: manual
51 # Otherwise, most jobs won't run
52 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +010053 retry:
54 max: 2
55 when:
56 - runner_system_failure
Eric Engestromac78ca42019-11-12 23:42:21 +000057 # Cancel CI run if a newer commit is pushed to the same branch
58 interruptible: true
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000059
Michel Dänzer8775b742020-01-13 09:45:57 +010060success:
61 stage: success
62 image: debian:stable-slim
63 only:
64 - merge_requests
65 except:
66 changes:
67 *paths
68 script:
69 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
70
71
Michel Dänzere426f402019-09-06 17:35:52 +020072.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -070073 artifacts:
74 when: always
75 untracked: false
76 paths:
77 # Watch out! Artifacts are relative to the build dir.
78 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
79 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000080
Tomeu Vizoso22d97642019-12-17 11:50:14 +010081# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +010082#
83# DEBIAN_TAG is the tag of the docker image used by later stage jobs. If the
84# image doesn't exist yet, the container stage job generates it.
85#
86# In order to generate a new image, one should generally change the tag.
87# While removing the image from the registry would also work, that's not
88# recommended except for ephemeral images during development: Replacing
89# an image after a significant amount of time might pull in newer
90# versions of gcc/clang or other packages, which might break the build
91# with older commits using the same tag.
92#
93# After merging a change resulting in generating a new image to the
94# main repository, it's recommended to remove the image from the source
95# repository's container registry, so that the image from the main
96# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +020097
Eric Engestrom81b98e92019-10-14 23:04:14 +010098.container:
99 stage: container
100 extends:
101 - .ci-run-policy
102 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100103 DEBIAN_VERSION: buster-slim
104 REPO_SUFFIX: $CI_JOB_NAME
Michel Dänzer506e9d52019-11-07 20:08:03 +0100105 DEBIAN_EXEC: 'bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
Eric Engestrom81b98e92019-10-14 23:04:14 +0100106 # no need to pull the whole repo to build the container image
107 GIT_STRATEGY: none
108
Michel Dänzerc6c76522019-11-11 18:13:28 +0100109# Debian 10 based x86 build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100110x86_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200111 extends:
112 - .debian@container-ifnot-exists
Eric Engestrom81b98e92019-10-14 23:04:14 +0100113 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100114 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100115 DEBIAN_TAG: &x86_build "2020-01-14"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000116
Michel Dänzer3a48f452019-11-13 17:43:41 +0100117.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100118 variables:
119 TAG: *x86_build
120 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200121 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100122 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200123
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100124# Debian 10 based x86 test image for GL
125x86_test-gl:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100126 extends: x86_build
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100127 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100128 DEBIAN_TAG: &x86_test-gl "2020-01-14"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100129
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100130# Debian 10 based x86 test image for VK
131x86_test-vk:
132 extends: x86_build
133 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100134 DEBIAN_TAG: &x86_test-vk "2020-01-14"
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100135 # Can only be triggered manually on personal branches because RADV is the only
136 # driver that does Vulkan testing at the moment.
137 rules:
138 # Never build the test image for VK by default in the main project.
139 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
140 when: never
141 # Never build the test image for VK by default for merge requests.
142 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
143 when: never
144 # Otherwise, allow building it manually for personal branches.
145 - when: manual
146
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100147
Michel Dänzerc6c76522019-11-11 18:13:28 +0100148# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100149x86_build_old:
150 extends: x86_build
Michel Dänzer8a199922019-09-06 17:04:47 +0200151 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100152 DEBIAN_TAG: &x86_build_old "2019-09-18"
153 DEBIAN_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200154
Michel Dänzer3a48f452019-11-13 17:43:41 +0100155.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100156 variables:
157 TAG: *x86_build_old
158 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200159 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100160 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200161
Michel Dänzerc6c76522019-11-11 18:13:28 +0100162# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100163arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200164 extends:
165 - .debian@container-ifnot-exists@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100166 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700167 variables:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100168 DEBIAN_TAG: &arm_build "2020-01-14"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000169
Michel Dänzerc6c76522019-11-11 18:13:28 +0100170.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100171 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100172 TAG: *arm_build
173 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
174 needs:
175 - arm_build
176
177# Debian 10 based ARM test image
178arm_test:
179 extends: arm_build
180 variables:
Tomeu Vizosod62dd8b2019-12-13 10:20:23 +0100181 DEBIAN_TAG: &arm_test "2019-12-18"
Michel Dänzerc6c76522019-11-11 18:13:28 +0100182
183.use-arm_test:
184 variables:
185 TAG: *arm_test
186 image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG"
187 needs:
188 - meson-arm64
189 - arm_test
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100190
Eric Engestrom81b98e92019-10-14 23:04:14 +0100191
Eric Engestrom46d23c02019-01-20 11:26:53 +0000192# BUILD
193
Dylan Baker06e46472019-10-23 14:21:31 -0700194# Shared between windows and Linux
195.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100196 extends: .ci-run-policy
Eric Engestroma0f8a072019-09-11 18:51:46 +0100197 stage: build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000198 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700199 when: always
200 paths:
201 - _build/meson-logs/*.txt
202 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200203 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700204 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700205
206# Just Linux
207.build-linux:
208 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200209 variables:
210 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100211 CCACHE_COMPRESS: "true"
212 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000213 # Use ccache transparently, and print stats before/after
214 before_script:
215 - export PATH="/usr/lib/ccache:$PATH"
216 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100217 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000218 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000219 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000220
Dylan Baker19851c92019-10-23 14:36:19 -0700221.build-windows:
222 extends: .build-common
223 tags:
224 - mesa-windows
225 cache:
226 key: ${CI_JOB_NAME}
227 paths:
228 - subprojects/packagecache
229
Eric Engestrom46d23c02019-01-20 11:26:53 +0000230.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100231 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700232 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100233 - .use-x86_build
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100234 variables:
235 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000236 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200237 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000238
Eric Engestrom06b245b2019-01-23 15:46:10 +0000239.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100240 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700241 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100242 - .use-x86_build
Eric Engestrom06b245b2019-01-23 15:46:10 +0000243 variables:
Eric Anholtcb655d22019-11-06 11:14:14 -0800244 SCONSFLAGS: "-j4"
Eric Engestrom06b245b2019-01-23 15:46:10 +0000245 script:
Michel Dänzer0374aac2019-09-12 11:34:43 +0200246 - .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000247
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100248meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200249 extends:
250 - .meson-build
251 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200252 variables:
253 UNWIND: "true"
254 DRI_LOADERS: >
255 -D glx=dri
256 -D gbm=true
257 -D egl=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100258 -D platforms=x11,drm,surfaceless
259 GALLIUM_ST: >
260 -D dri3=true
261 GALLIUM_DRIVERS: "swrast"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100262 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100263 BUILDTYPE: "debugoptimized"
264 script:
265 - .gitlab-ci/meson-build.sh
266 - .gitlab-ci/prepare-artifacts.sh
267
268meson-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
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200276 -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
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100288 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 +0200289 EXTRA_OPTION: >
290 -D osmesa=gallium
291 -D tools=all
Michel Dänzer59fcb012019-10-23 18:42:53 +0200292 script:
293 - .gitlab-ci/meson-build.sh
294 - .gitlab-ci/run-shader-db.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200295
Michel Dänzere5364462019-09-13 11:59:43 +0200296.meson-cross:
297 extends:
298 - .meson-build
Michel Dänzere5364462019-09-13 11:59:43 +0200299 variables:
300 UNWIND: "false"
301 DRI_LOADERS: >
302 -D glx=disabled
303 -D gbm=false
304 -D egl=true
305 -D platforms=surfaceless
306 -D osmesa=none
307 GALLIUM_ST: >
308 -D dri3=false
309 -D gallium-vdpau=false
310 -D gallium-xvmc=false
311 -D gallium-omx=disabled
312 -D gallium-va=false
313 -D gallium-xa=false
314 -D gallium-nine=false
Michel Dänzere5364462019-09-13 11:59:43 +0200315
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200316.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100317 extends:
318 - .meson-cross
319 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200320 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200321 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200322 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100323 BUILDTYPE: "debugoptimized"
Michel Dänzere5364462019-09-13 11:59:43 +0200324 EXTRA_OPTION: >
Michel Dänzere5364462019-09-13 11:59:43 +0200325 -D I-love-half-baked-turnips=true
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200326 tags:
327 - aarch64
328
329meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100330 extends:
331 - .meson-arm
332 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200333 variables:
334 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200335 LLVM_VERSION: "7"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100336 script:
337 - .gitlab-ci/meson-build.sh
338 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200339
340meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200341 extends:
342 - .meson-arm
343 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200344 variables:
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100345 LLVM_VERSION: "8"
Samuel Pitoiset47ba2272019-11-12 14:25:16 +0100346 VULKAN_DRIVERS: "freedreno,amd"
Michel Dänzer59fcb012019-10-23 18:42:53 +0200347 script:
348 - .gitlab-ci/meson-build.sh
349 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200350
Michel Dänzera2cce702019-03-20 15:58:31 +0100351meson-clang:
352 extends: .meson-build
353 variables:
354 UNWIND: "true"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100355 DRI_LOADERS: >
356 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100357 DRI_DRIVERS: "auto"
358 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100359 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100360 CC: "ccache clang-9"
361 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100362
Michel Dänzeraaf1b092019-10-30 09:38:20 +0100363.meson-windows:
Dylan Baker19851c92019-10-23 14:36:19 -0700364 extends:
365 - .build-windows
366 before_script:
367 - $ENV:ARCH = "x86"
368 - $ENV:VERSION = "2019\Community"
369 script:
370 - cmd /C .gitlab-ci\meson-build.bat
371
Michel Dänzer82b30092019-05-03 18:19:25 +0200372scons-swr:
373 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000374 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200375 SCONS_TARGET: "swr=1"
376 SCONS_CHECK_COMMAND: "true"
377 LLVM_VERSION: "6.0"
378
379scons-win64:
380 extends: .scons-build
381 variables:
382 SCONS_TARGET: platform=windows machine=x86_64
383 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000384
Michel Dänzer68977152019-05-03 10:58:48 +0200385meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000386 extends: .meson-build
387 variables:
388 UNWIND: "true"
389 DRI_LOADERS: >
390 -D glx=disabled
391 -D egl=false
392 -D gbm=false
393 GALLIUM_ST: >
394 -D dri3=false
395 -D gallium-vdpau=false
396 -D gallium-xvmc=false
397 -D gallium-omx=disabled
398 -D gallium-va=false
399 -D gallium-xa=false
400 -D gallium-nine=false
401 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200402 script:
403 - export GALLIUM_DRIVERS="r600,radeonsi"
404 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200405 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200406 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200407 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
408 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
409
410meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200411 extends:
412 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100413 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200414 variables:
415 UNWIND: "false"
416 DRI_LOADERS: >
417 -D glx=disabled
418 -D egl=false
419 -D gbm=false
420 -D platforms=drm,surfaceless
421 GALLIUM_DRIVERS: "i915,r600"
422 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200423 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
424 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
425 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000426
Michel Dänzer82b30092019-05-03 18:19:25 +0200427meson-vulkan:
428 extends: .meson-build
429 variables:
430 UNWIND: "false"
431 DRI_LOADERS: >
432 -D glx=disabled
433 -D gbm=false
434 -D egl=false
435 -D platforms=x11,wayland,drm
436 -D osmesa=none
437 GALLIUM_ST: >
438 -D dri3=true
439 -D gallium-vdpau=false
440 -D gallium-xvmc=false
441 -D gallium-omx=disabled
442 -D gallium-va=false
443 -D gallium-xa=false
444 -D gallium-nine=false
445 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200446 -D b_sanitize=undefined
447 -D c_args=-fno-sanitize-recover=all
448 -D cpp_args=-fno-sanitize-recover=all
449 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200450 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200451 EXTRA_OPTION: >
452 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200453
Eric Anholt030aa6e2019-08-07 14:05:51 -0700454# While the main point of this build is testing the i386 cross build,
455# we also use this one to test some other options that are exclusive
456# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700457meson-i386:
458 extends: .meson-cross
459 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100460 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700461 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700462 DRI_DRIVERS: "swrast"
463 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700464 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700465 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700466 -D llvm=false
467 -D osmesa=classic
Eric Anholt11aa32a2019-07-11 12:58:28 -0700468
Dylan Baker449f8312019-10-11 09:04:14 -0700469meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700470 extends: .meson-build
471 variables:
472 UNWIND: "false"
473 DRI_DRIVERS: ""
474 GALLIUM_DRIVERS: "swrast"
475 EXTRA_OPTION: >
476 -Dllvm=false
477 -Dosmesa=gallium
478 --cross-file=.gitlab-ci/x86_64-w64-mingw32
479
Michel Dänzer88e57962019-09-12 11:45:13 +0200480scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000481 extends: .scons-build
482 variables:
483 SCONS_TARGET: "llvm=1"
Dylan Baker54053bc2019-10-21 09:29:23 -0700484 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200485 script:
Dylan Baker54053bc2019-10-21 09:29:23 -0700486 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100487 - LLVM_VERSION=9 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200488
489scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200490 extends:
491 - scons
Michel Dänzer3a48f452019-11-13 17:43:41 +0100492 - .use-x86_build_old
Michel Dänzerbaa50242019-09-12 11:38:06 +0200493 script:
494 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700495
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100496.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200497 extends:
498 - .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700499 stage: test
Eric Anholt46daaca2019-06-28 16:35:32 -0700500 variables:
501 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200502 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700503 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
504 - rm -rf install
505 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100506 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700507 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800508 when: always
Eric Anholt46daaca2019-06-28 16:35:32 -0700509 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
510 paths:
511 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200512 dependencies:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100513 - meson-testing
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100514
515.test-gl:
516 extends:
517 - .test
518 variables:
519 TAG: *x86_test-gl
520 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200521 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100522 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100523 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700524
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100525.test-vk:
526 extends:
527 - .test
528 variables:
529 TAG: *x86_test-vk
530 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
531 needs:
532 - meson-testing
533 - x86_test-vk
534
Michel Dänzer576f7b62019-10-22 17:16:52 +0200535.piglit-test:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100536 extends: .test-gl
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100537 artifacts:
538 when: on_failure
539 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
540 paths:
541 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200542 variables:
543 LIBGL_ALWAYS_SOFTWARE: 1
544 PIGLIT_NO_WINDOW: 1
545 script:
546 - artifacts/piglit/run.sh
547
548piglit-quick_gl:
549 extends: .piglit-test
550 variables:
551 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000552 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200553 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100554 --process-isolation false
Michel Dänzer576f7b62019-10-22 17:16:52 +0200555 -x arb_gpu_shader5
Eric Anholt3097efe2019-12-04 16:13:38 -0800556 -x egl_ext_device_
557 -x egl_ext_platform_device
Michel Dänzer576f7b62019-10-22 17:16:52 +0200558 -x glx-multithread-clearbuffer
559 -x glx-multithread-shader-compile
560 -x max-texture-size
561 -x maxsize
562 PIGLIT_PROFILES: quick_gl
563
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100564piglit-glslparser:
565 extends: .piglit-test
566 variables:
567 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000568 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100569 PIGLIT_PROFILES: glslparser
570
571piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200572 extends: .piglit-test
573 variables:
574 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000575 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100576 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200577
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100578.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200579 variables:
580 DEQP_SKIPS: deqp-default-skips.txt
581 script:
582 - ./artifacts/deqp-runner.sh
583
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100584.deqp-test-gl:
585 extends:
586 - .test-gl
587 - .deqp-test
588
589.deqp-test-vk:
590 extends:
591 - .test-vk
592 - .deqp-test
593 variables:
594 DEQP_VER: vk
595
Eric Anholt46daaca2019-06-28 16:35:32 -0700596test-llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700597 variables:
598 DEQP_VER: gles2
Eric Anholtf08c8102019-11-04 10:54:41 -0800599 DEQP_PARALLEL: 4
Dave Airliee6b2af52019-12-03 15:23:45 +1000600 NIR_VALIDATE: 0
Eric Anholtf08c8102019-11-04 10:54:41 -0800601 # Don't use threads inside llvmpipe, we've already got all 4 cores
602 # busy with DEQP_PARALLEL.
603 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700604 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
605 LIBGL_ALWAYS_SOFTWARE: "true"
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100606 extends: .deqp-test-gl
Eric Anholt553cd822019-08-09 10:32:40 -0700607
608test-softpipe-gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200609 extends: test-llvmpipe-gles2
Eric Anholt553cd822019-08-09 10:32:40 -0700610 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700611 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800612 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700613 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700614
Eric Anholt52843ec2019-11-05 10:31:29 -0800615test-softpipe-gles3:
616 parallel: 2
Eric Anholt553cd822019-08-09 10:32:40 -0700617 variables:
618 DEQP_VER: gles3
Eric Anholt52843ec2019-11-05 10:31:29 -0800619 extends: test-softpipe-gles2
620
621test-softpipe-gles31:
622 parallel: 4
623 variables:
624 DEQP_VER: gles31
625 extends: test-softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700626
Michel Dänzer128581d2019-09-11 18:55:43 +0200627arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100628 extends:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100629 - .deqp-test-gl
Michel Dänzerc6c76522019-11-11 18:13:28 +0100630 - .use-arm_test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700631 variables:
632 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700633 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
634 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
635 NIR_VALIDATE: 0
Eric Anholtdd76a6f2019-11-21 05:12:58 -0800636 DEQP_PARALLEL: 4
Rob Clarkfdaf7772019-11-17 11:33:01 -0800637 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt6f0dc082019-06-28 16:35:32 -0700638 tags:
639 - mesa-cheza
640 dependencies:
641 - meson-arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700642
Michel Dänzer128581d2019-09-11 18:55:43 +0200643arm64_a630_gles31:
644 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700645 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200646 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700647
648arm64_a630_gles3:
Michel Dänzer128581d2019-09-11 18:55:43 +0200649 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700650 variables:
651 DEQP_VER: gles3
652
Michel Dänzer128581d2019-09-11 18:55:43 +0200653arm64_a306_gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200654 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700655 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200656 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
657 DEQP_SKIPS: deqp-default-skips.txt
Michel Dänzer128581d2019-09-11 18:55:43 +0200658 tags:
659 - db410c
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100660
661# RADV CI
662.test-radv:
663 variables:
664 VK_DRIVER: radeon
Samuel Pitoisetff2e11b2019-12-06 17:07:35 +0100665 RADV_DEBUG: checkir
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100666 # Can only be triggered manually on personal branches because RADV is the only
667 # driver that does Vulkan testing at the moment.
668 rules:
669 # Never test RADV by default in the main project.
670 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
671 when: never
672 # Never test RADV by default for merge requests.
673 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
674 when: never
675 # Otherwise, allow testing RADV if the test image for VK has been manually
676 # started.
677 - when: on_success
678
679radv_polaris10_vkcts:
680 extends:
681 - .deqp-test-vk
682 - .test-radv
683 variables:
684 DEQP_PARALLEL: 4
685 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
686 tags:
687 - polaris10