blob: e6891997e5136a3554728edb3d434c9109eaf457 [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
Eric Engestroma0f8a072019-09-11 18:51:46 +010012 - build
Eric Anholt46daaca2019-06-28 16:35:32 -070013 - test
Michel Dänzer8775b742020-01-13 09:45:57 +010014 - success
Eric Engestrom329f5cd2019-01-20 11:21:45 +000015
16
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000017# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020018.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020019 rules:
Michel Dänzer8775b742020-01-13 09:45:57 +010020 # Run pipeline by default for merge requests changing files affecting it
21 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
22 changes: &paths
23 - VERSION
24 - bin/**/*
25 # GitLab CI
26 - .gitlab-ci.yml
27 - .gitlab-ci/**/*
28 # Meson
29 - meson*
30 - build-support/**/*
31 - subprojects/**/*
32 # SCons
33 - SConstruct
34 - scons/**/*
35 - common.py
36 # Source code
37 - include/**/*
38 - src/**/*
39 when: on_success
40 # Run pipeline by default in the main project if files affecting it were
41 # changed
42 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
43 changes:
44 *paths
45 when: on_success
46 # Allow triggering jobs manually on branches of forked projects
Michel Dänzer5a6a88f2020-01-20 18:39:50 +010047 - if: '$CI_PROJECT_PATH != "mesa/mesa" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME != $CI_COMMIT_REF_NAME'
Michel Dänzer8775b742020-01-13 09:45:57 +010048 when: manual
49 # Otherwise, most jobs won't run
50 - when: never
Michel Dänzer6140ed32019-03-26 18:39:41 +010051 retry:
52 max: 2
53 when:
54 - runner_system_failure
Eric Engestromac78ca42019-11-12 23:42:21 +000055 # Cancel CI run if a newer commit is pushed to the same branch
56 interruptible: true
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000057
Michel Dänzer8775b742020-01-13 09:45:57 +010058success:
59 stage: success
60 image: debian:stable-slim
61 only:
62 - merge_requests
63 except:
64 changes:
65 *paths
Michel Dänzer2dd0cc62020-01-20 18:34:34 +010066 variables:
67 GIT_STRATEGY: none
Michel Dänzer8775b742020-01-13 09:45:57 +010068 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:
Dave Airlie8f5a2522020-02-14 15:47:20 +1000115 DEBIAN_TAG: &x86_build "2020-02-15"
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:
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200128 DEBIAN_TAG: &x86_test-gl "2020-02-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:
Andres Gomezf1b7b8c2020-02-20 17:09:03 +0200134 DEBIAN_TAG: &x86_test-vk "2020-02-03"
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:
Eric Anholt33f38602020-01-28 12:02:39 -0800168 DEBIAN_TAG: &arm_build "2020-02-26"
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:
Eric Anholt658eb692020-01-30 15:53:39 -0800181 DEBIAN_TAG: &arm_test "2020-01-30"
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"
Eric Anholt3c7c0212019-12-16 21:23:02 -0800264 EXTRA_OPTION: >
265 -D werror=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100266 script:
267 - .gitlab-ci/meson-build.sh
268 - .gitlab-ci/prepare-artifacts.sh
269
270meson-main:
271 extends: .meson-build
272 variables:
273 UNWIND: "true"
274 DRI_LOADERS: >
275 -D glx=dri
276 -D gbm=true
277 -D egl=true
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200278 -D platforms=x11,wayland,drm,surfaceless
279 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
280 GALLIUM_ST: >
281 -D dri3=true
282 -D gallium-extra-hud=true
283 -D gallium-vdpau=true
284 -D gallium-xvmc=true
285 -D gallium-omx=bellagio
286 -D gallium-va=true
287 -D gallium-xa=true
288 -D gallium-nine=true
289 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100290 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 +0200291 EXTRA_OPTION: >
292 -D osmesa=gallium
293 -D tools=all
Michel Dänzer59fcb012019-10-23 18:42:53 +0200294 script:
295 - .gitlab-ci/meson-build.sh
296 - .gitlab-ci/run-shader-db.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200297
Michel Dänzere5364462019-09-13 11:59:43 +0200298.meson-cross:
299 extends:
300 - .meson-build
Michel Dänzere5364462019-09-13 11:59:43 +0200301 variables:
302 UNWIND: "false"
303 DRI_LOADERS: >
304 -D glx=disabled
305 -D gbm=false
306 -D egl=true
307 -D platforms=surfaceless
308 -D osmesa=none
309 GALLIUM_ST: >
310 -D dri3=false
311 -D gallium-vdpau=false
312 -D gallium-xvmc=false
313 -D gallium-omx=disabled
314 -D gallium-va=false
315 -D gallium-xa=false
316 -D gallium-nine=false
Michel Dänzer65610ec2020-01-30 18:21:15 +0100317 LLVM_VERSION: "8"
Michel Dänzere5364462019-09-13 11:59:43 +0200318
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200319.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100320 extends:
321 - .meson-cross
322 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200323 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200324 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200325 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100326 BUILDTYPE: "debugoptimized"
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200327 tags:
328 - aarch64
329
330meson-armhf:
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100331 extends:
332 - .meson-arm
333 - .ci-deqp-artifacts
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200334 variables:
335 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200336 LLVM_VERSION: "7"
Eric Anholt25741582020-02-24 10:31:33 -0800337 EXTRA_OPTION: >
338 -D llvm=false
Tomeu Vizoso22d97642019-12-17 11:50:14 +0100339 script:
340 - .gitlab-ci/meson-build.sh
341 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200342
343meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200344 extends:
345 - .meson-arm
346 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200347 variables:
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100348 VULKAN_DRIVERS: "freedreno"
Eric Anholt25741582020-02-24 10:31:33 -0800349 EXTRA_OPTION: >
350 -D llvm=false
Michel Dänzer59fcb012019-10-23 18:42:53 +0200351 script:
352 - .gitlab-ci/meson-build.sh
353 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200354
Rohan Garg9c0bbba2020-02-20 16:37:48 +0100355meson-arm64-build-test:
356 extends:
357 - .meson-arm
358 - .ci-deqp-artifacts
359 variables:
360 VULKAN_DRIVERS: "amd"
361 script:
362 - .gitlab-ci/meson-build.sh
363
Michel Dänzera2cce702019-03-20 15:58:31 +0100364meson-clang:
365 extends: .meson-build
366 variables:
367 UNWIND: "true"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100368 DRI_LOADERS: >
369 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100370 DRI_DRIVERS: "auto"
371 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100372 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100373 CC: "ccache clang-9"
374 CXX: "ccache clang++-9"
Michel Dänzera2cce702019-03-20 15:58:31 +0100375
Michel Dänzeraaf1b092019-10-30 09:38:20 +0100376.meson-windows:
Dylan Baker19851c92019-10-23 14:36:19 -0700377 extends:
378 - .build-windows
379 before_script:
380 - $ENV:ARCH = "x86"
381 - $ENV:VERSION = "2019\Community"
382 script:
383 - cmd /C .gitlab-ci\meson-build.bat
384
Michel Dänzer82b30092019-05-03 18:19:25 +0200385scons-swr:
386 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000387 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200388 SCONS_TARGET: "swr=1"
389 SCONS_CHECK_COMMAND: "true"
390 LLVM_VERSION: "6.0"
391
392scons-win64:
393 extends: .scons-build
394 variables:
395 SCONS_TARGET: platform=windows machine=x86_64
396 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000397
Michel Dänzer68977152019-05-03 10:58:48 +0200398meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000399 extends: .meson-build
400 variables:
401 UNWIND: "true"
402 DRI_LOADERS: >
403 -D glx=disabled
404 -D egl=false
405 -D gbm=false
406 GALLIUM_ST: >
407 -D dri3=false
408 -D gallium-vdpau=false
409 -D gallium-xvmc=false
410 -D gallium-omx=disabled
411 -D gallium-va=false
412 -D gallium-xa=false
413 -D gallium-nine=false
414 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200415 script:
416 - export GALLIUM_DRIVERS="r600,radeonsi"
417 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200418 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200419 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200420 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
421 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
422
423meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200424 extends:
425 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100426 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200427 variables:
428 UNWIND: "false"
429 DRI_LOADERS: >
430 -D glx=disabled
431 -D egl=false
432 -D gbm=false
433 -D platforms=drm,surfaceless
434 GALLIUM_DRIVERS: "i915,r600"
435 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200436 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
437 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
438 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000439
Michel Dänzer82b30092019-05-03 18:19:25 +0200440meson-vulkan:
441 extends: .meson-build
442 variables:
443 UNWIND: "false"
444 DRI_LOADERS: >
445 -D glx=disabled
446 -D gbm=false
447 -D egl=false
448 -D platforms=x11,wayland,drm
449 -D osmesa=none
450 GALLIUM_ST: >
451 -D dri3=true
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=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200459 -D b_sanitize=undefined
460 -D c_args=-fno-sanitize-recover=all
461 -D cpp_args=-fno-sanitize-recover=all
462 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200463 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200464 EXTRA_OPTION: >
465 -D vulkan-overlay-layer=true
Eric Anholt3c7c0212019-12-16 21:23:02 -0800466 -D werror=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200467
Eric Anholt030aa6e2019-08-07 14:05:51 -0700468# While the main point of this build is testing the i386 cross build,
469# we also use this one to test some other options that are exclusive
470# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700471meson-i386:
472 extends: .meson-cross
473 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100474 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700475 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700476 DRI_DRIVERS: "swrast"
477 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700478 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700479 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700480 -D llvm=false
481 -D osmesa=classic
Eric Anholtf6e59912019-12-16 21:23:02 -0800482 -D werror=true
Eric Anholt11aa32a2019-07-11 12:58:28 -0700483
Michel Dänzer65610ec2020-01-30 18:21:15 +0100484meson-s390x:
485 extends:
486 - .meson-cross
Michel Dänzer23037622020-02-10 12:13:04 +0100487 tags:
488 - gstreamer
Michel Dänzer65610ec2020-01-30 18:21:15 +0100489 variables:
490 CROSS: s390x
491 GALLIUM_DRIVERS: "swrast"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100492 script:
493 - dpkg -i /var/cache/apt/archives/$CROSS/*.deb
494 - .gitlab-ci/meson-build.sh
495
496meson-ppc64el:
497 extends:
498 - meson-s390x
499 variables:
500 CROSS: ppc64el
Michel Dänzer8be81f82020-01-31 16:07:10 +0100501 GALLIUM_DRIVERS: "nouveau,radeonsi,swrast,virgl"
Michel Dänzer8be81f82020-01-31 16:07:10 +0100502 VULKAN_DRIVERS: "amd"
Michel Dänzer65610ec2020-01-30 18:21:15 +0100503
Dylan Baker449f8312019-10-11 09:04:14 -0700504meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700505 extends: .meson-build
506 variables:
507 UNWIND: "false"
508 DRI_DRIVERS: ""
509 GALLIUM_DRIVERS: "swrast"
510 EXTRA_OPTION: >
511 -Dllvm=false
512 -Dosmesa=gallium
513 --cross-file=.gitlab-ci/x86_64-w64-mingw32
514
Michel Dänzer88e57962019-09-12 11:45:13 +0200515scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000516 extends: .scons-build
517 variables:
518 SCONS_TARGET: "llvm=1"
Dylan Baker54053bc2019-10-21 09:29:23 -0700519 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200520 script:
Dylan Baker54053bc2019-10-21 09:29:23 -0700521 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
Michel Dänzer5f0ff002019-12-13 11:02:16 +0100522 - LLVM_VERSION=9 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200523
524scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200525 extends:
526 - scons
Michel Dänzer3a48f452019-11-13 17:43:41 +0100527 - .use-x86_build_old
Michel Dänzerbaa50242019-09-12 11:38:06 +0200528 script:
529 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700530
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100531.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200532 extends:
533 - .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700534 stage: test
Eric Anholt46daaca2019-06-28 16:35:32 -0700535 variables:
536 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200537 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700538 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
539 - rm -rf install
540 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100541 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700542 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800543 when: always
Eric Anholt46daaca2019-06-28 16:35:32 -0700544 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
545 paths:
546 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200547 dependencies:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100548 - meson-testing
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100549
550.test-gl:
551 extends:
552 - .test
553 variables:
554 TAG: *x86_test-gl
555 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200556 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100557 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100558 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700559
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100560.test-vk:
561 extends:
562 - .test
563 variables:
564 TAG: *x86_test-vk
565 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
566 needs:
567 - meson-testing
568 - x86_test-vk
569
Michel Dänzer576f7b62019-10-22 17:16:52 +0200570.piglit-test:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100571 extends: .test-gl
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100572 artifacts:
573 when: on_failure
574 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
575 paths:
576 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200577 variables:
578 LIBGL_ALWAYS_SOFTWARE: 1
579 PIGLIT_NO_WINDOW: 1
580 script:
581 - artifacts/piglit/run.sh
582
583piglit-quick_gl:
584 extends: .piglit-test
585 variables:
586 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000587 NIR_VALIDATE: 0
Michel Dänzer576f7b62019-10-22 17:16:52 +0200588 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100589 --process-isolation false
Michel Dänzer576f7b62019-10-22 17:16:52 +0200590 -x arb_gpu_shader5
Eric Anholt3097efe2019-12-04 16:13:38 -0800591 -x egl_ext_device_
592 -x egl_ext_platform_device
Matt Turner17c9ec92020-01-21 15:23:39 -0800593 -x ext_timer_query@time-elapsed
Michel Dänzer576f7b62019-10-22 17:16:52 +0200594 -x glx-multithread-clearbuffer
595 -x glx-multithread-shader-compile
596 -x max-texture-size
597 -x maxsize
598 PIGLIT_PROFILES: quick_gl
599
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100600piglit-glslparser:
601 extends: .piglit-test
602 variables:
603 LP_NUM_THREADS: 0
Dave Airliee6b2af52019-12-03 15:23:45 +1000604 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100605 PIGLIT_PROFILES: glslparser
606
607piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200608 extends: .piglit-test
609 variables:
610 LP_NUM_THREADS: 1
Dave Airliee6b2af52019-12-03 15:23:45 +1000611 NIR_VALIDATE: 0
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100612 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200613
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100614.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200615 variables:
616 DEQP_SKIPS: deqp-default-skips.txt
617 script:
618 - ./artifacts/deqp-runner.sh
619
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100620.deqp-test-gl:
621 extends:
622 - .test-gl
623 - .deqp-test
624
625.deqp-test-vk:
626 extends:
627 - .test-vk
628 - .deqp-test
629 variables:
630 DEQP_VER: vk
631
Eric Anholt46daaca2019-06-28 16:35:32 -0700632test-llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700633 variables:
634 DEQP_VER: gles2
Eric Anholtf08c8102019-11-04 10:54:41 -0800635 DEQP_PARALLEL: 4
Dave Airliee6b2af52019-12-03 15:23:45 +1000636 NIR_VALIDATE: 0
Eric Anholtf08c8102019-11-04 10:54:41 -0800637 # Don't use threads inside llvmpipe, we've already got all 4 cores
638 # busy with DEQP_PARALLEL.
639 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700640 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
641 LIBGL_ALWAYS_SOFTWARE: "true"
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100642 extends: .deqp-test-gl
Eric Anholt553cd822019-08-09 10:32:40 -0700643
644test-softpipe-gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200645 extends: test-llvmpipe-gles2
Eric Anholt553cd822019-08-09 10:32:40 -0700646 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700647 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800648 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700649 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700650
Eric Anholt52843ec2019-11-05 10:31:29 -0800651test-softpipe-gles3:
652 parallel: 2
Eric Anholt553cd822019-08-09 10:32:40 -0700653 variables:
654 DEQP_VER: gles3
Eric Anholt52843ec2019-11-05 10:31:29 -0800655 extends: test-softpipe-gles2
656
657test-softpipe-gles31:
658 parallel: 4
659 variables:
660 DEQP_VER: gles31
661 extends: test-softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700662
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000663arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100664 extends:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100665 - .deqp-test-gl
Michel Dänzerc6c76522019-11-11 18:13:28 +0100666 - .use-arm_test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700667 variables:
668 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700669 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
670 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
671 NIR_VALIDATE: 0
Eric Anholtdd76a6f2019-11-21 05:12:58 -0800672 DEQP_PARALLEL: 4
Rob Clarkfdaf7772019-11-17 11:33:01 -0800673 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt6f0dc082019-06-28 16:35:32 -0700674 tags:
675 - mesa-cheza
676 dependencies:
677 - meson-arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700678
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000679arm64_a630_gles31:
680 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700681 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200682 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700683
Fritz Koenig2a98cf32020-02-12 19:31:24 +0000684arm64_a630_gles3:
685 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700686 variables:
687 DEQP_VER: gles3
688
Eric Anholtaea8c9c2020-03-03 11:44:45 -0800689arm64_a306_gles2:
690 extends: arm64_a630_gles2
691 variables:
692 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
693 DEQP_SKIPS: deqp-default-skips.txt
694 tags:
695 - db410c
696
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100697# RADV CI
698.test-radv:
699 variables:
700 VK_DRIVER: radeon
Samuel Pitoisetff2e11b2019-12-06 17:07:35 +0100701 RADV_DEBUG: checkir
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100702 # Can only be triggered manually on personal branches because RADV is the only
703 # driver that does Vulkan testing at the moment.
704 rules:
705 # Never test RADV by default in the main project.
706 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
707 when: never
708 # Never test RADV by default for merge requests.
709 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
710 when: never
711 # Otherwise, allow testing RADV if the test image for VK has been manually
712 # started.
713 - when: on_success
714
715radv_polaris10_vkcts:
716 extends:
717 - .deqp-test-vk
718 - .test-radv
719 variables:
720 DEQP_PARALLEL: 4
721 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
722 tags:
723 - polaris10
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200724
725.traces-test:
726 extends:
727 - .test-gl
728 cache:
729 key: ${CI_JOB_NAME}
730 paths:
731 - .git-lfs-storage/
732 script:
733 - ./artifacts/tracie-runner.sh
734
735llvmpipe-traces:
736 variables:
737 LIBGL_ALWAYS_SOFTWARE: "true"
738 GALLIUM_DRIVER: "llvmpipe"
Andres Gomez1d755952020-02-20 17:32:08 +0200739 DEVICE_NAME: "gl-vmware-llvmpipe"
Alexandros Frantzis803ab5d2020-01-08 17:46:46 +0200740 extends: .traces-test