blob: f91830fe3bafb49045bca00d67b9582440b4b7b3 [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änzer84fefa22020-01-31 16:57:31 +01006 ref: b7030c2cd0d6ccc5f6d4f8299bafa4daa9240d71
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'
Tomeu Vizoso7b01f722019-09-18 16:03:36 +02009
Eric Engestrom329f5cd2019-01-20 11:21:45 +000010stages:
Eric Engestrom81b98e92019-10-14 23:04:14 +010011 - container
Michel Dänzercc9493f2020-02-27 18:27:56 +010012 - meson-x86_64
13 - scons
14 - meson-misc
15 - llvmpipe
16 - softpipe
17 - freedreno
18 - panfrost
19 - misc-tests
Michel Dänzer8775b742020-01-13 09:45:57 +010020 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000021
22
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000023# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020024.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020025 rules:
Michel Dänzer8775b742020-01-13 09:45:57 +010026 # Run pipeline by default for merge requests changing files affecting it
27 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
28 changes: &paths
29 - VERSION
30 - bin/**/*
31 # GitLab CI
32 - .gitlab-ci.yml
33 - .gitlab-ci/**/*
34 # Meson
35 - meson*
36 - build-support/**/*
37 - subprojects/**/*
38 # SCons
39 - SConstruct
40 - scons/**/*
41 - common.py
42 # Source code
43 - include/**/*
44 - src/**/*
45 when: on_success
46 # Run pipeline by default in the main project if files affecting it were
47 # changed
48 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
49 changes:
50 *paths
51 when: on_success
52 # Allow triggering jobs manually on branches of forked projects
Michel Dänzer5a6a88f2020-01-20 18:39:50 +010053 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer8775b742020-01-13 09:45:57 +010054 when: manual
55 # Otherwise, most jobs won't run
56 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +010057 retry:
58 max: 2
59 when:
60 - runner_system_failure
Eric Engestromac78ca42019-11-12 23:42:21 +000061 # Cancel CI run if a newer commit is pushed to the same branch
62 interruptible: true
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000063
Michel Dänzer8775b742020-01-13 09:45:57 +010064success:
65 stage: success
66 image: debian:stable-slim
67 only:
68 - merge_requests
69 except:
70 changes:
71 *paths
Michel Dänzer2dd0cc62020-01-20 18:34:34 +010072 variables:
73 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +010074 script:
75 - echo "Dummy job to make sure every merge request pipeline runs at least one job"
76
77
Michel Dänzere426f402019-09-06 17:35:52 +020078.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -070079 artifacts:
80 when: always
81 untracked: false
82 paths:
83 # Watch out! Artifacts are relative to the build dir.
84 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
85 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000086
Tomeu Vizoso22d97642019-12-17 11:50:14 +010087# Build the CI docker images.
Michel Dänzerc6c76522019-11-11 18:13:28 +010088#
89# DEBIAN_TAG is the tag of the docker image used by later stage jobs. If the
90# image doesn't exist yet, the container stage job generates it.
91#
92# In order to generate a new image, one should generally change the tag.
93# While removing the image from the registry would also work, that's not
94# recommended except for ephemeral images during development: Replacing
95# an image after a significant amount of time might pull in newer
96# versions of gcc/clang or other packages, which might break the build
97# with older commits using the same tag.
98#
99# After merging a change resulting in generating a new image to the
100# main repository, it's recommended to remove the image from the source
101# repository's container registry, so that the image from the main
102# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +0200103
Eric Engestrom81b98e92019-10-14 23:04:14 +0100104.container:
105 stage: container
106 extends:
107 - .ci-run-policy
108 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100109 DEBIAN_VERSION: buster-slim
110 REPO_SUFFIX: $CI_JOB_NAME
Michel Dänzer506e9d52019-11-07 20:08:03 +0100111 DEBIAN_EXEC: 'bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
Eric Engestrom81b98e92019-10-14 23:04:14 +0100112 # no need to pull the whole repo to build the container image
113 GIT_STRATEGY: none
114
Michel Dänzerc6c76522019-11-11 18:13:28 +0100115# Debian 10 based x86 build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100116x86_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200117 extends:
118 - .debian@container-ifnot-exists
Eric Engestrom81b98e92019-10-14 23:04:14 +0100119 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +0100120 variables:
Dave Airlie8f5a2522020-02-14 15:47:20 +1000121 DEBIAN_TAG: &x86_build "2020-02-15"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000122
Michel Dänzer3a48f452019-11-13 17:43:41 +0100123.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100124 variables:
125 TAG: *x86_build
126 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200127 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100128 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200129
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100130# Debian 10 based x86 test image for GL
131x86_test-gl:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100132 extends: x86_build
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100133 variables:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200134 DEBIAN_TAG: &x86_test-gl "2020-02-14"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100135
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100136# Debian 10 based x86 test image for VK
137x86_test-vk:
138 extends: x86_build
139 variables:
Samuel Pitoiset93fcc9a2020-02-26 09:32:41 +0100140 DEBIAN_TAG: &x86_test-vk "2020-03-05"
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100141
Michel Dänzerc6c76522019-11-11 18:13:28 +0100142# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100143x86_build_old:
144 extends: x86_build
Michel Dänzer8a199922019-09-06 17:04:47 +0200145 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100146 DEBIAN_TAG: &x86_build_old "2019-09-18"
147 DEBIAN_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200148
Michel Dänzer3a48f452019-11-13 17:43:41 +0100149.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100150 variables:
151 TAG: *x86_build_old
152 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200153 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100154 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200155
Michel Dänzerc6c76522019-11-11 18:13:28 +0100156# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100157arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200158 extends:
159 - .debian@container-ifnot-exists@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100160 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700161 variables:
Eric Anholt33f38602020-01-28 12:02:39 -0800162 DEBIAN_TAG: &arm_build "2020-02-26"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000163
Michel Dänzerc6c76522019-11-11 18:13:28 +0100164.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100165 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100166 TAG: *arm_build
167 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
168 needs:
169 - arm_build
170
171# Debian 10 based ARM test image
172arm_test:
173 extends: arm_build
174 variables:
Eric Anholt658eb692020-01-30 15:53:39 -0800175 DEBIAN_TAG: &arm_test "2020-01-30"
Michel Dänzerc6c76522019-11-11 18:13:28 +0100176
177.use-arm_test:
178 variables:
179 TAG: *arm_test
180 image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG"
181 needs:
182 - meson-arm64
183 - arm_test
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100184
Eric Engestrom81b98e92019-10-14 23:04:14 +0100185
Eric Engestrom46d23c02019-01-20 11:26:53 +0000186# BUILD
187
Dylan Baker06e46472019-10-23 14:21:31 -0700188# Shared between windows and Linux
189.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100190 extends: .ci-run-policy
Eric Engestrom46d23c02019-01-20 11:26:53 +0000191 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700192 when: always
193 paths:
194 - _build/meson-logs/*.txt
195 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200196 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700197 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700198
199# Just Linux
200.build-linux:
201 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200202 variables:
203 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100204 CCACHE_COMPRESS: "true"
205 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000206 # Use ccache transparently, and print stats before/after
207 before_script:
208 - export PATH="/usr/lib/ccache:$PATH"
209 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100210 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000211 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000212 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000213
Dylan Baker19851c92019-10-23 14:36:19 -0700214.build-windows:
215 extends: .build-common
216 tags:
217 - mesa-windows
218 cache:
219 key: ${CI_JOB_NAME}
220 paths:
221 - subprojects/packagecache
222
Eric Engestrom46d23c02019-01-20 11:26:53 +0000223.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100224 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700225 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100226 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100227 stage: meson-x86_64
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100228 variables:
229 LLVM_VERSION: 9
Eric Engestrom23b485c2019-02-12 16:59:27 +0000230 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200231 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000232
Eric Engestrom06b245b2019-01-23 15:46:10 +0000233.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100234 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700235 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100236 - .use-x86_build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100237 stage: scons
Eric Engestrom06b245b2019-01-23 15:46:10 +0000238 variables:
Eric Anholtcb655d22019-11-06 11:14:14 -0800239 SCONSFLAGS: "-j4"
Eric Engestrom06b245b2019-01-23 15:46:10 +0000240 script:
Michel Dänzer0374aac2019-09-12 11:34:43 +0200241 - .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000242
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100243meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200244 extends:
245 - .meson-build
246 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200247 variables:
248 UNWIND: "true"
249 DRI_LOADERS: >
250 -D glx=dri
251 -D gbm=true
252 -D egl=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100253 -D platforms=x11,drm,surfaceless
254 GALLIUM_ST: >
255 -D dri3=true
256 GALLIUM_DRIVERS: "swrast"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100257 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100258 BUILDTYPE: "debugoptimized"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800259 EXTRA_OPTION: >
260 -D werror=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100261 script:
262 - .gitlab-ci/meson-build.sh
263 - .gitlab-ci/prepare-artifacts.sh
264
265meson-main:
266 extends: .meson-build
267 variables:
268 UNWIND: "true"
269 DRI_LOADERS: >
270 -D glx=dri
271 -D gbm=true
272 -D egl=true
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200273 -D platforms=x11,wayland,drm,surfaceless
274 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
275 GALLIUM_ST: >
276 -D dri3=true
277 -D gallium-extra-hud=true
278 -D gallium-vdpau=true
279 -D gallium-xvmc=true
280 -D gallium-omx=bellagio
281 -D gallium-va=true
282 -D gallium-xa=true
283 -D gallium-nine=true
284 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100285 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 +0200286 EXTRA_OPTION: >
287 -D osmesa=gallium
288 -D tools=all
Michel Dänzer59fcb012019-10-23 18:42:53 +0200289 script:
290 - .gitlab-ci/meson-build.sh
291 - .gitlab-ci/run-shader-db.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200292
Michel Dänzere5364462019-09-13 11:59:43 +0200293.meson-cross:
294 extends:
295 - .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100296 stage: meson-misc
Michel Dänzere5364462019-09-13 11:59:43 +0200297 variables:
298 UNWIND: "false"
299 DRI_LOADERS: >
300 -D glx=disabled
301 -D gbm=false
302 -D egl=true
303 -D platforms=surfaceless
304 -D osmesa=none
305 GALLIUM_ST: >
306 -D dri3=false
307 -D gallium-vdpau=false
308 -D gallium-xvmc=false
309 -D gallium-omx=disabled
310 -D gallium-va=false
311 -D gallium-xa=false
312 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100313 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200314
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200315.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100316 extends:
317 - .meson-cross
318 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200319 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200320 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200321 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100322 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200323 tags:
324 - aarch64
325
326meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100327 extends:
328 - .meson-arm
329 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200330 variables:
331 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200332 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800333 EXTRA_OPTION: >
334 -D llvm=false
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100335 script:
336 - .gitlab-ci/meson-build.sh
337 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200338
339meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200340 extends:
341 - .meson-arm
342 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200343 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100344 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800345 EXTRA_OPTION: >
346 -D llvm=false
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
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100351meson-arm64-build-test:
352 extends:
353 - .meson-arm
354 - .ci-deqp-artifacts
355 variables:
356 VULKAN_DRIVERS: "amd"
357 script:
358 - .gitlab-ci/meson-build.sh
359
Michel Dänzera2cce702019-03-20 15:58:31 +0100360meson-clang:
361 extends: .meson-build
362 variables:
363 UNWIND: "true"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100364 DRI_LOADERS: >
365 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100366 DRI_DRIVERS: "auto"
367 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100368 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100369 CC: "ccache clang-9"
370 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100371
Michel Dänzeraaf1b092019-10-30 09:38:20 +0100372.meson-windows:
Dylan Baker19851c92019-10-23 14:36:19 -0700373 extends:
374 - .build-windows
Michel Dänzercc9493f2020-02-27 18:27:56 +0100375 stage: meson-misc
Dylan Baker19851c92019-10-23 14:36:19 -0700376 before_script:
377 - $ENV:ARCH = "x86"
378 - $ENV:VERSION = "2019\Community"
379 script:
380 - cmd /C .gitlab-ci\meson-build.bat
381
Michel Dänzer82b30092019-05-03 18:19:25 +0200382scons-swr:
383 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000384 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200385 SCONS_TARGET: "swr=1"
386 SCONS_CHECK_COMMAND: "true"
387 LLVM_VERSION: "6.0"
388
389scons-win64:
390 extends: .scons-build
391 variables:
392 SCONS_TARGET: platform=windows machine=x86_64
393 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000394
Michel Dänzer68977152019-05-03 10:58:48 +0200395meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000396 extends: .meson-build
397 variables:
398 UNWIND: "true"
399 DRI_LOADERS: >
400 -D glx=disabled
401 -D egl=false
402 -D gbm=false
403 GALLIUM_ST: >
404 -D dri3=false
405 -D gallium-vdpau=false
406 -D gallium-xvmc=false
407 -D gallium-omx=disabled
408 -D gallium-va=false
409 -D gallium-xa=false
410 -D gallium-nine=false
411 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200412 script:
413 - export GALLIUM_DRIVERS="r600,radeonsi"
414 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200415 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200416 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200417 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
418 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
419
420meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200421 extends:
422 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100423 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200424 variables:
425 UNWIND: "false"
426 DRI_LOADERS: >
427 -D glx=disabled
428 -D egl=false
429 -D gbm=false
430 -D platforms=drm,surfaceless
431 GALLIUM_DRIVERS: "i915,r600"
432 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200433 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
434 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
435 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000436
Michel Dänzer82b30092019-05-03 18:19:25 +0200437meson-vulkan:
438 extends: .meson-build
439 variables:
440 UNWIND: "false"
441 DRI_LOADERS: >
442 -D glx=disabled
443 -D gbm=false
444 -D egl=false
445 -D platforms=x11,wayland,drm
446 -D osmesa=none
447 GALLIUM_ST: >
448 -D dri3=true
449 -D gallium-vdpau=false
450 -D gallium-xvmc=false
451 -D gallium-omx=disabled
452 -D gallium-va=false
453 -D gallium-xa=false
454 -D gallium-nine=false
455 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200456 -D b_sanitize=undefined
457 -D c_args=-fno-sanitize-recover=all
458 -D cpp_args=-fno-sanitize-recover=all
459 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200460 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200461 EXTRA_OPTION: >
462 -D vulkan-overlay-layer=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800463 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200464
Eric Anholt030aa6e2019-08-07 14:05:51 -0700465# While the main point of this build is testing the i386 cross build,
466# we also use this one to test some other options that are exclusive
467# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700468meson-i386:
469 extends: .meson-cross
470 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100471 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700472 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700473 DRI_DRIVERS: "swrast"
474 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700475 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700476 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700477 -D llvm=false
478 -D osmesa=classic
Eric Anholtf6e59912019-12-16 21:23:02 -0800479 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700480
Michel Dänzer65610ec2020-01-30 18:21:15 +0100481meson-s390x:
482 extends:
483 - .meson-cross
Michel Dänzer23037622020-02-10 12:13:04 +0100484 tags:
485 - gstreamer
Michel Dänzer65610ec2020-01-30 18:21:15 +0100486 variables:
487 CROSS: s390x
488 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100489 script:
490 - dpkg -i /var/cache/apt/archives/$CROSS/*.deb
491 - .gitlab-ci/meson-build.sh
492
493meson-ppc64el:
494 extends:
495 - meson-s390x
496 variables:
497 CROSS: ppc64el
Michel Dänzer8be81f82020-01-31 16:07:10 +0100498 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100499 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100500
Dylan Baker449f8312019-10-11 09:04:14 -0700501meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700502 extends: .meson-build
Michel Dänzercc9493f2020-02-27 18:27:56 +0100503 stage: meson-misc
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700504 variables:
505 UNWIND: "false"
506 DRI_DRIVERS: ""
507 GALLIUM_DRIVERS: "swrast"
508 EXTRA_OPTION: >
509 -Dllvm=false
510 -Dosmesa=gallium
511 --cross-file=.gitlab-ci/x86_64-w64-mingw32
512
Michel Dänzer88e57962019-09-12 11:45:13 +0200513scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000514 extends: .scons-build
515 variables:
516 SCONS_TARGET: "llvm=1"
Dylan Baker54053bc2019-10-21 09:29:23 -0700517 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200518 script:
Dylan Baker54053bc2019-10-21 09:29:23 -0700519 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100520 - LLVM_VERSION=9 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200521
522scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200523 extends:
524 - scons
Michel Dänzer3a48f452019-11-13 17:43:41 +0100525 - .use-x86_build_old
Michel Dänzerbaa50242019-09-12 11:38:06 +0200526 script:
527 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700528
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100529.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200530 extends:
531 - .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700532 variables:
533 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200534 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700535 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
536 - rm -rf install
537 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100538 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700539 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800540 when: always
Eric Anholt46daaca2019-06-28 16:35:32 -0700541 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
542 paths:
543 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200544 dependencies:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100545 - meson-testing
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100546
547.test-gl:
548 extends:
549 - .test
550 variables:
551 TAG: *x86_test-gl
552 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200553 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100554 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100555 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700556
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100557.test-vk:
558 extends:
559 - .test
560 variables:
561 TAG: *x86_test-vk
562 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
563 needs:
564 - meson-testing
565 - x86_test-vk
566
Michel Dänzer576f7b62019-10-22 17:16:52 +0200567.piglit-test:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100568 extends: .test-gl
Michel Dänzercc9493f2020-02-27 18:27:56 +0100569 stage: llvmpipe
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100570 artifacts:
571 when: on_failure
572 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
573 paths:
574 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200575 variables:
576 LIBGL_ALWAYS_SOFTWARE: 1
577 PIGLIT_NO_WINDOW: 1
578 script:
579 - artifacts/piglit/run.sh
580
581piglit-quick_gl:
582 extends: .piglit-test
583 variables:
584 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000585 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200586 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100587 --process-isolation false
Michel Dänzer576f7b62019-10-22 17:16:52 +0200588 -x arb_gpu_shader5
Eric Anholt3097efe2019-12-04 16:13:38 -0800589 -x egl_ext_device_
590 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800591 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200592 -x glx-multithread-clearbuffer
593 -x glx-multithread-shader-compile
594 -x max-texture-size
595 -x maxsize
596 PIGLIT_PROFILES: quick_gl
597
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100598piglit-glslparser:
599 extends: .piglit-test
600 variables:
601 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000602 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100603 PIGLIT_PROFILES: glslparser
604
605piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200606 extends: .piglit-test
607 variables:
608 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000609 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100610 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200611
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100612.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200613 variables:
614 DEQP_SKIPS: deqp-default-skips.txt
615 script:
616 - ./artifacts/deqp-runner.sh
617
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100618.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
Samuel Pitoiset1cdb6ed2020-02-26 09:33:14 +0100630.fossilize-test:
631 extends: .test-vk
632 script:
633 - ./artifacts/fossilize-runner.sh
634
Michel Dänzer71436f92020-03-03 18:17:12 +0100635llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700636 variables:
637 DEQP_VER: gles2
Eric Anholtf08c8102019-11-04 10:54:41 -0800638 DEQP_PARALLEL: 4
Dave Airliee6b2af52019-12-03 15:23:45 +1000639 NIR_VALIDATE: 0
Eric Anholtf08c8102019-11-04 10:54:41 -0800640 # Don't use threads inside llvmpipe, we've already got all 4 cores
641 # busy with DEQP_PARALLEL.
642 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700643 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
644 LIBGL_ALWAYS_SOFTWARE: "true"
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100645 extends: .deqp-test-gl
Michel Dänzercc9493f2020-02-27 18:27:56 +0100646 stage: llvmpipe
Eric Anholt553cd822019-08-09 10:32:40 -0700647
Michel Dänzer71436f92020-03-03 18:17:12 +0100648softpipe-gles2:
649 extends: llvmpipe-gles2
Michel Dänzercc9493f2020-02-27 18:27:56 +0100650 stage: softpipe
Eric Anholt553cd822019-08-09 10:32:40 -0700651 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700652 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800653 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700654 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700655
Michel Dänzer71436f92020-03-03 18:17:12 +0100656softpipe-gles3:
Eric Anholt52843ec2019-11-05 10:31:29 -0800657 parallel: 2
Eric Anholt553cd822019-08-09 10:32:40 -0700658 variables:
659 DEQP_VER: gles3
Michel Dänzer71436f92020-03-03 18:17:12 +0100660 extends: softpipe-gles2
Eric Anholt52843ec2019-11-05 10:31:29 -0800661
Michel Dänzer71436f92020-03-03 18:17:12 +0100662softpipe-gles31:
Eric Anholt52843ec2019-11-05 10:31:29 -0800663 parallel: 4
664 variables:
665 DEQP_VER: gles31
Michel Dänzer71436f92020-03-03 18:17:12 +0100666 extends: softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700667
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000668arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100669 extends:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100670 - .deqp-test-gl
Michel Dänzerc6c76522019-11-11 18:13:28 +0100671 - .use-arm_test
Michel Dänzercc9493f2020-02-27 18:27:56 +0100672 stage: freedreno
Eric Anholt6f0dc082019-06-28 16:35:32 -0700673 variables:
674 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700675 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
676 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
677 NIR_VALIDATE: 0
Eric Anholtdd76a6f2019-11-21 05:12:58 -0800678 DEQP_PARALLEL: 4
Rob Clarkfdaf7772019-11-17 11:33:01 -0800679 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt6f0dc082019-06-28 16:35:32 -0700680 tags:
681 - mesa-cheza
682 dependencies:
683 - meson-arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700684
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000685arm64_a630_gles31:
686 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700687 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200688 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700689
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000690arm64_a630_gles3:
691 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700692 variables:
693 DEQP_VER: gles3
694
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800695arm64_a306_gles2:
696 extends: arm64_a630_gles2
697 variables:
698 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
699 DEQP_SKIPS: deqp-default-skips.txt
700 tags:
701 - db410c
702
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100703# RADV CI
704.test-radv:
Michel Dänzercc9493f2020-02-27 18:27:56 +0100705 stage: misc-tests
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100706 variables:
707 VK_DRIVER: radeon
Samuel Pitoisetff2e11b2019-12-06 17:07:35 +0100708 RADV_DEBUG: checkir
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100709
710.test-radv-unsafe:
711 extends: .test-radv
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100712 # Can only be triggered manually on personal branches because RADV is the only
713 # driver that does Vulkan testing at the moment.
714 rules:
715 # Never test RADV by default in the main project.
716 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
717 when: never
718 # Never test RADV by default for merge requests.
719 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
720 when: never
Samuel Pitoisetaf1cd452020-02-26 08:49:27 +0100721 # Otherwise, allow testing RADV manually for personal branches.
722 - when: manual
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100723
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100724.test-radv-fossilize:
725 extends:
726 - .fossilize-test
727 - .test-radv
728
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100729radv_polaris10_vkcts:
730 extends:
731 - .deqp-test-vk
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100732 - .test-radv-unsafe
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100733 variables:
734 DEQP_PARALLEL: 4
735 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
736 tags:
737 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200738
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100739radv-polaris10-fossils:
740 extends: .test-radv-fossilize
741 variables:
742 RADV_FORCE_FAMILY: "polaris10" # Force creating a null device
743
Andres Gomez0ac731b12020-02-20 18:26:30 +0200744# Traces CI
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200745.traces-test:
Michel Dänzercc9493f2020-02-27 18:27:56 +0100746 stage: misc-tests
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200747 cache:
748 key: ${CI_JOB_NAME}
749 paths:
750 - .git-lfs-storage/
Andres Gomez0ac731b12020-02-20 18:26:30 +0200751
752.traces-test-gl:
753 extends:
754 - .test-gl
755 - .traces-test
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200756 script:
Andres Gomez0ac731b12020-02-20 18:26:30 +0200757 - ./artifacts/tracie-runner-gl.sh
758
759.traces-test-vk:
760 extends:
761 - .test-vk
762 - .traces-test
763 script:
764 - ./artifacts/tracie-runner-vk.sh
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200765
766llvmpipe-traces:
Andres Gomez0ac731b12020-02-20 18:26:30 +0200767 extends: .traces-test-gl
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200768 variables:
769 LIBGL_ALWAYS_SOFTWARE: "true"
770 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +0200771 DEVICE_NAME: "gl-vmware-llvmpipe"
Andres Gomez0ac731b12020-02-20 18:26:30 +0200772
773radv-polaris10-traces:
774 extends:
775 - .traces-test-vk
Samuel Pitoiset42a3d822020-02-05 17:04:20 +0100776 - .test-radv-unsafe
Andres Gomez0ac731b12020-02-20 18:26:30 +0200777 variables:
778 DEVICE_NAME: "vk-amd-polaris10"
779 tags:
780 - polaris10