blob: 079af449c8f68df85cada6b51e79a22b8bddf320 [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'
Eric Engestrom329f5cd2019-01-20 11:21:45 +00009
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020010include:
Dylan Baker19851c92019-10-23 14:36:19 -070011 - local: '.gitlab-ci/lava-gitlab-ci.yml'
Tomeu Vizoso7b01f722019-09-18 16:03:36 +020012
Eric Engestrom329f5cd2019-01-20 11:21:45 +000013stages:
Eric Engestrom81b98e92019-10-14 23:04:14 +010014 - container
Eric Engestroma0f8a072019-09-11 18:51:46 +010015 - build
Eric Anholt46daaca2019-06-28 16:35:32 -070016 - test
Eric Engestrom329f5cd2019-01-20 11:21:45 +000017
18
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000019# When to automatically run the CI
Michel Dänzere426f402019-09-06 17:35:52 +020020.ci-run-policy:
Michel Dänzer41797a12019-09-26 09:27:27 +020021 rules:
22 - when: on_success
Michel Dänzer6140ed32019-03-26 18:39:41 +010023 retry:
24 max: 2
25 when:
26 - runner_system_failure
Eric Engestromac78ca42019-11-12 23:42:21 +000027 # Cancel CI run if a newer commit is pushed to the same branch
28 interruptible: true
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000029
Michel Dänzere426f402019-09-06 17:35:52 +020030.ci-deqp-artifacts:
Eric Anholt46daaca2019-06-28 16:35:32 -070031 artifacts:
32 when: always
33 untracked: false
34 paths:
35 # Watch out! Artifacts are relative to the build dir.
36 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
37 - artifacts
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000038
Michel Dänzerc6c76522019-11-11 18:13:28 +010039# Build the "normal" (non-LAVA) CI docker images.
40#
41# DEBIAN_TAG is the tag of the docker image used by later stage jobs. If the
42# image doesn't exist yet, the container stage job generates it.
43#
44# In order to generate a new image, one should generally change the tag.
45# While removing the image from the registry would also work, that's not
46# recommended except for ephemeral images during development: Replacing
47# an image after a significant amount of time might pull in newer
48# versions of gcc/clang or other packages, which might break the build
49# with older commits using the same tag.
50#
51# After merging a change resulting in generating a new image to the
52# main repository, it's recommended to remove the image from the source
53# repository's container registry, so that the image from the main
54# repository's registry will be used there as well.
Michel Dänzer8a199922019-09-06 17:04:47 +020055
Eric Engestrom81b98e92019-10-14 23:04:14 +010056.container:
57 stage: container
58 extends:
59 - .ci-run-policy
Michel Dänzer41797a12019-09-26 09:27:27 +020060 rules:
61 # Run pipeline by default for merge requests changing files affecting it
62 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
63 changes:
64 - VERSION
65 - bin/**/*
66 # GitLab CI
67 - .gitlab-ci.yml
68 - .gitlab-ci/**/*
69 # Meson
70 - meson*
71 - build-support/**/*
72 - subprojects/**/*
73 # SCons
74 - SConstruct
75 - scons/**/*
76 - common.py
77 # Source code
78 - include/**/*
79 - src/**/*
80 when: on_success
81 # Always run pipeline by default in the main project
82 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
83 when: on_success
84 # Otherwise, allow triggering jobs manually
85 - when: manual
Eric Engestrom81b98e92019-10-14 23:04:14 +010086 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +010087 DEBIAN_VERSION: buster-slim
88 REPO_SUFFIX: $CI_JOB_NAME
Michel Dänzer506e9d52019-11-07 20:08:03 +010089 DEBIAN_EXEC: 'bash .gitlab-ci/container/${CI_JOB_NAME}.sh'
Eric Engestrom81b98e92019-10-14 23:04:14 +010090 # no need to pull the whole repo to build the container image
91 GIT_STRATEGY: none
92
Michel Dänzerc6c76522019-11-11 18:13:28 +010093# Debian 10 based x86 build image
Michel Dänzer3a48f452019-11-13 17:43:41 +010094x86_build:
Michel Dänzere426f402019-09-06 17:35:52 +020095 extends:
96 - .debian@container-ifnot-exists
Eric Engestrom81b98e92019-10-14 23:04:14 +010097 - .container
Michel Dänzerc6c76522019-11-11 18:13:28 +010098 variables:
99 DEBIAN_TAG: &x86_build "2019-11-13"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000100
Michel Dänzer3a48f452019-11-13 17:43:41 +0100101.use-x86_build:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100102 variables:
103 TAG: *x86_build
104 image: "$CI_REGISTRY_IMAGE/debian/x86_build:$TAG"
Michel Dänzereb86cba2019-10-10 15:27:17 +0200105 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100106 - x86_build
Michel Dänzereb86cba2019-10-10 15:27:17 +0200107
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100108# Debian 10 based x86 test image for GL
109x86_test-gl:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100110 extends: x86_build
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100111 variables:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100112 DEBIAN_TAG: &x86_test-gl "2019-12-05"
Michel Dänzeraebf43d2019-11-05 18:52:24 +0100113
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100114# Debian 10 based x86 test image for VK
115x86_test-vk:
116 extends: x86_build
117 variables:
118 DEBIAN_TAG: &x86_test-vk "2019-11-22"
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100119 # Can only be triggered manually on personal branches because RADV is the only
120 # driver that does Vulkan testing at the moment.
121 rules:
122 # Never build the test image for VK by default in the main project.
123 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
124 when: never
125 # Never build the test image for VK by default for merge requests.
126 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
127 when: never
128 # Otherwise, allow building it manually for personal branches.
129 - when: manual
130
Samuel Pitoisetf2a594f2019-11-18 09:23:18 +0100131
Michel Dänzerc6c76522019-11-11 18:13:28 +0100132# Debian 9 based x86 build image (old LLVM)
Michel Dänzer3a48f452019-11-13 17:43:41 +0100133x86_build_old:
134 extends: x86_build
Michel Dänzer8a199922019-09-06 17:04:47 +0200135 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100136 DEBIAN_TAG: &x86_build_old "2019-09-18"
137 DEBIAN_VERSION: stretch-slim
Michel Dänzer8a199922019-09-06 17:04:47 +0200138
Michel Dänzer3a48f452019-11-13 17:43:41 +0100139.use-x86_build_old:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100140 variables:
141 TAG: *x86_build_old
142 image: "$CI_REGISTRY_IMAGE/debian/x86_build_old:$TAG"
Michel Dänzer88319f22019-09-18 16:17:01 +0200143 needs:
Michel Dänzer3a48f452019-11-13 17:43:41 +0100144 - x86_build_old
Michel Dänzer88319f22019-09-18 16:17:01 +0200145
Michel Dänzerc6c76522019-11-11 18:13:28 +0100146# Debian 10 based ARM build image
Michel Dänzer3a48f452019-11-13 17:43:41 +0100147arm_build:
Michel Dänzere426f402019-09-06 17:35:52 +0200148 extends:
149 - .debian@container-ifnot-exists@arm64v8
Eric Engestrom81b98e92019-10-14 23:04:14 +0100150 - .container
Eric Anholt6f0dc082019-06-28 16:35:32 -0700151 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100152 DEBIAN_TAG: &arm_build "2019-11-13"
Eric Engestrom46d23c02019-01-20 11:26:53 +0000153
Michel Dänzerc6c76522019-11-11 18:13:28 +0100154.use-arm_build:
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100155 variables:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100156 TAG: *arm_build
157 image: "$CI_REGISTRY_IMAGE/debian/arm_build:$TAG"
158 needs:
159 - arm_build
160
161# Debian 10 based ARM test image
162arm_test:
163 extends: arm_build
164 variables:
Rob Clark8af75512019-11-22 13:30:18 -0800165 DEBIAN_TAG: &arm_test "2019-11-22"
Michel Dänzerc6c76522019-11-11 18:13:28 +0100166
167.use-arm_test:
168 variables:
169 TAG: *arm_test
170 image: "$CI_REGISTRY_IMAGE/debian/arm_test:$TAG"
171 needs:
172 - meson-arm64
173 - arm_test
Michel Dänzerb4d3ae22019-11-04 09:54:09 +0100174
Eric Engestrom81b98e92019-10-14 23:04:14 +0100175
Eric Engestrom46d23c02019-01-20 11:26:53 +0000176# BUILD
177
Dylan Baker06e46472019-10-23 14:21:31 -0700178# Shared between windows and Linux
179.build-common:
Eric Engestromaba78c22019-10-14 23:52:58 +0100180 extends: .ci-run-policy
Eric Engestroma0f8a072019-09-11 18:51:46 +0100181 stage: build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000182 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -0700183 when: always
184 paths:
185 - _build/meson-logs/*.txt
186 # scons:
Michel Dänzer5229f272019-07-26 12:20:41 +0200187 - build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -0700188 - shader-db
Dylan Baker06e46472019-10-23 14:21:31 -0700189
190# Just Linux
191.build-linux:
192 extends: .build-common
Michel Dänzere9de19f2019-04-04 18:01:27 +0200193 variables:
194 CCACHE_COMPILERCHECK: "content"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100195 CCACHE_COMPRESS: "true"
196 CCACHE_DIR: /cache/mesa/ccache
Eric Engestrom23b485c2019-02-12 16:59:27 +0000197 # Use ccache transparently, and print stats before/after
198 before_script:
199 - export PATH="/usr/lib/ccache:$PATH"
200 - export CCACHE_BASEDIR="$PWD"
Michel Dänzer32618ee2019-11-20 09:11:35 +0100201 - ccache --show-stats
Eric Engestrom23b485c2019-02-12 16:59:27 +0000202 after_script:
Eric Engestrom23b485c2019-02-12 16:59:27 +0000203 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +0000204
Dylan Baker19851c92019-10-23 14:36:19 -0700205.build-windows:
206 extends: .build-common
207 tags:
208 - mesa-windows
209 cache:
210 key: ${CI_JOB_NAME}
211 paths:
212 - subprojects/packagecache
213
Eric Engestrom46d23c02019-01-20 11:26:53 +0000214.meson-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100215 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700216 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100217 - .use-x86_build
Eric Engestrom23b485c2019-02-12 16:59:27 +0000218 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +0200219 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +0000220
Eric Engestrom06b245b2019-01-23 15:46:10 +0000221.scons-build:
Eric Engestromaba78c22019-10-14 23:52:58 +0100222 extends:
Dylan Baker06e46472019-10-23 14:21:31 -0700223 - .build-linux
Michel Dänzer3a48f452019-11-13 17:43:41 +0100224 - .use-x86_build
Eric Engestrom06b245b2019-01-23 15:46:10 +0000225 variables:
Eric Anholtcb655d22019-11-06 11:14:14 -0800226 SCONSFLAGS: "-j4"
Eric Engestrom06b245b2019-01-23 15:46:10 +0000227 script:
Michel Dänzer0374aac2019-09-12 11:34:43 +0200228 - .gitlab-ci/scons-build.sh
Eric Engestrom06b245b2019-01-23 15:46:10 +0000229
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100230meson-testing:
Michel Dänzere426f402019-09-06 17:35:52 +0200231 extends:
232 - .meson-build
233 - .ci-deqp-artifacts
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200234 variables:
235 UNWIND: "true"
236 DRI_LOADERS: >
237 -D glx=dri
238 -D gbm=true
239 -D egl=true
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100240 -D platforms=x11,drm,surfaceless
241 GALLIUM_ST: >
242 -D dri3=true
243 GALLIUM_DRIVERS: "swrast"
Samuel Pitoiset40c6a562019-11-19 14:46:53 +0100244 VULKAN_DRIVERS: amd
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100245 BUILDTYPE: "debugoptimized"
246 script:
247 - .gitlab-ci/meson-build.sh
248 - .gitlab-ci/prepare-artifacts.sh
249
250meson-main:
251 extends: .meson-build
252 variables:
253 UNWIND: "true"
254 DRI_LOADERS: >
255 -D glx=dri
256 -D gbm=true
257 -D egl=true
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200258 -D platforms=x11,wayland,drm,surfaceless
259 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
260 GALLIUM_ST: >
261 -D dri3=true
262 -D gallium-extra-hud=true
263 -D gallium-vdpau=true
264 -D gallium-xvmc=true
265 -D gallium-omx=bellagio
266 -D gallium-va=true
267 -D gallium-xa=true
268 -D gallium-nine=true
269 -D gallium-opencl=disabled
Samuel Pitoisete6d26d72019-11-19 14:36:02 +0100270 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 +0200271 LLVM_VERSION: "7"
272 EXTRA_OPTION: >
273 -D osmesa=gallium
274 -D tools=all
Michel Dänzer59fcb012019-10-23 18:42:53 +0200275 script:
276 - .gitlab-ci/meson-build.sh
277 - .gitlab-ci/run-shader-db.sh
Michel Dänzer42f8d5a2019-08-28 12:01:02 +0200278
Michel Dänzere5364462019-09-13 11:59:43 +0200279.meson-cross:
280 extends:
281 - .meson-build
Michel Dänzere5364462019-09-13 11:59:43 +0200282 variables:
283 UNWIND: "false"
284 DRI_LOADERS: >
285 -D glx=disabled
286 -D gbm=false
287 -D egl=true
288 -D platforms=surfaceless
289 -D osmesa=none
290 GALLIUM_ST: >
291 -D dri3=false
292 -D gallium-vdpau=false
293 -D gallium-xvmc=false
294 -D gallium-omx=disabled
295 -D gallium-va=false
296 -D gallium-xa=false
297 -D gallium-nine=false
Michel Dänzere5364462019-09-13 11:59:43 +0200298
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200299.meson-arm:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100300 extends:
301 - .meson-cross
302 - .use-arm_build
Michel Dänzere5364462019-09-13 11:59:43 +0200303 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200304 VULKAN_DRIVERS: freedreno
Michel Dänzer793f6b32019-10-08 19:48:41 +0200305 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
Michel Dänzere5364462019-09-13 11:59:43 +0200306 EXTRA_OPTION: >
Michel Dänzere5364462019-09-13 11:59:43 +0200307 -D I-love-half-baked-turnips=true
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200308 tags:
309 - aarch64
310
311meson-armhf:
312 extends: .meson-arm
313 variables:
314 CROSS: armhf
Michel Dänzer793f6b32019-10-08 19:48:41 +0200315 LLVM_VERSION: "7"
Michel Dänzere5364462019-09-13 11:59:43 +0200316
317meson-arm64:
Michel Dänzer163ec5d2019-10-08 19:46:11 +0200318 extends:
319 - .meson-arm
320 - .ci-deqp-artifacts
Michel Dänzere5364462019-09-13 11:59:43 +0200321 variables:
Michel Dänzere5364462019-09-13 11:59:43 +0200322 BUILDTYPE: "debugoptimized"
Samuel Pitoiset47ba2272019-11-12 14:25:16 +0100323 VULKAN_DRIVERS: "freedreno,amd"
Michel Dänzer59fcb012019-10-23 18:42:53 +0200324 script:
325 - .gitlab-ci/meson-build.sh
326 - .gitlab-ci/prepare-artifacts.sh
Michel Dänzere5364462019-09-13 11:59:43 +0200327
Michel Dänzera2cce702019-03-20 15:58:31 +0100328meson-clang:
329 extends: .meson-build
330 variables:
331 UNWIND: "true"
Samuel Pitoiset73621762019-11-19 14:37:32 +0100332 DRI_LOADERS: >
333 -D glvnd=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100334 DRI_DRIVERS: "auto"
335 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100336 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200337 CC: "ccache clang-8"
338 CXX: "ccache clang++-8"
Michel Dänzera2cce702019-03-20 15:58:31 +0100339
Michel Dänzeraaf1b092019-10-30 09:38:20 +0100340.meson-windows:
Dylan Baker19851c92019-10-23 14:36:19 -0700341 extends:
342 - .build-windows
343 before_script:
344 - $ENV:ARCH = "x86"
345 - $ENV:VERSION = "2019\Community"
346 script:
347 - cmd /C .gitlab-ci\meson-build.bat
348
Michel Dänzer82b30092019-05-03 18:19:25 +0200349scons-swr:
350 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000351 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200352 SCONS_TARGET: "swr=1"
353 SCONS_CHECK_COMMAND: "true"
354 LLVM_VERSION: "6.0"
355
356scons-win64:
357 extends: .scons-build
358 variables:
359 SCONS_TARGET: platform=windows machine=x86_64
360 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000361
Michel Dänzer68977152019-05-03 10:58:48 +0200362meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000363 extends: .meson-build
364 variables:
365 UNWIND: "true"
366 DRI_LOADERS: >
367 -D glx=disabled
368 -D egl=false
369 -D gbm=false
370 GALLIUM_ST: >
371 -D dri3=false
372 -D gallium-vdpau=false
373 -D gallium-xvmc=false
374 -D gallium-omx=disabled
375 -D gallium-va=false
376 -D gallium-xa=false
377 -D gallium-nine=false
378 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200379 script:
380 - export GALLIUM_DRIVERS="r600,radeonsi"
381 - .gitlab-ci/meson-build.sh
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200382 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
Michel Dänzer68977152019-05-03 10:58:48 +0200383 - export GALLIUM_DRIVERS="i915,r600"
Michel Dänzer8a199922019-09-06 17:04:47 +0200384 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
385 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
386
387meson-clover-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200388 extends:
389 - meson-clover
Michel Dänzer3a48f452019-11-13 17:43:41 +0100390 - .use-x86_build_old
Michel Dänzer8a199922019-09-06 17:04:47 +0200391 variables:
392 UNWIND: "false"
393 DRI_LOADERS: >
394 -D glx=disabled
395 -D egl=false
396 -D gbm=false
397 -D platforms=drm,surfaceless
398 GALLIUM_DRIVERS: "i915,r600"
399 script:
Michel Dänzer68977152019-05-03 10:58:48 +0200400 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
401 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
402 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000403
Michel Dänzer82b30092019-05-03 18:19:25 +0200404meson-vulkan:
405 extends: .meson-build
406 variables:
407 UNWIND: "false"
408 DRI_LOADERS: >
409 -D glx=disabled
410 -D gbm=false
411 -D egl=false
412 -D platforms=x11,wayland,drm
413 -D osmesa=none
414 GALLIUM_ST: >
415 -D dri3=true
416 -D gallium-vdpau=false
417 -D gallium-xvmc=false
418 -D gallium-omx=disabled
419 -D gallium-va=false
420 -D gallium-xa=false
421 -D gallium-nine=false
422 -D gallium-opencl=disabled
Michel Dänzer75cc8c02019-09-25 12:56:58 +0200423 -D b_sanitize=undefined
424 -D c_args=-fno-sanitize-recover=all
425 -D cpp_args=-fno-sanitize-recover=all
426 UBSAN_OPTIONS: "print_stacktrace=1"
Michel Dänzer82b30092019-05-03 18:19:25 +0200427 VULKAN_DRIVERS: intel,amd,freedreno
Samuel Pitoiset7d1c0912019-08-21 11:45:25 +0200428 LLVM_VERSION: "8"
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200429 EXTRA_OPTION: >
430 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200431
Eric Anholt030aa6e2019-08-07 14:05:51 -0700432# While the main point of this build is testing the i386 cross build,
433# we also use this one to test some other options that are exclusive
434# with meson-main's choices (classic swrast and osmesa)
Eric Anholt11aa32a2019-07-11 12:58:28 -0700435meson-i386:
436 extends: .meson-cross
437 variables:
Eric Engestrom1c82fa02019-08-09 23:46:50 +0100438 CROSS: i386
Eric Anholt11aa32a2019-07-11 12:58:28 -0700439 VULKAN_DRIVERS: intel
Eric Anholt030aa6e2019-08-07 14:05:51 -0700440 DRI_DRIVERS: "swrast"
441 GALLIUM_DRIVERS: "iris"
Eric Anholt11aa32a2019-07-11 12:58:28 -0700442 EXTRA_OPTION: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700443 -D vulkan-overlay-layer=true
Eric Anholt030aa6e2019-08-07 14:05:51 -0700444 -D llvm=false
445 -D osmesa=classic
Eric Anholt11aa32a2019-07-11 12:58:28 -0700446
Dylan Baker449f8312019-10-11 09:04:14 -0700447meson-mingw32-x86_64:
Dylan Bakerd905d9b2019-09-19 10:21:51 -0700448 extends: .meson-build
449 variables:
450 UNWIND: "false"
451 DRI_DRIVERS: ""
452 GALLIUM_DRIVERS: "swrast"
453 EXTRA_OPTION: >
454 -Dllvm=false
455 -Dosmesa=gallium
456 --cross-file=.gitlab-ci/x86_64-w64-mingw32
457
Michel Dänzer88e57962019-09-12 11:45:13 +0200458scons:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000459 extends: .scons-build
460 variables:
461 SCONS_TARGET: "llvm=1"
Dylan Baker54053bc2019-10-21 09:29:23 -0700462 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
Michel Dänzerbaa50242019-09-12 11:38:06 +0200463 script:
Dylan Baker54053bc2019-10-21 09:29:23 -0700464 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
Michel Dänzerbaa50242019-09-12 11:38:06 +0200465 - LLVM_VERSION=8 .gitlab-ci/scons-build.sh
Michel Dänzer8a199922019-09-06 17:04:47 +0200466
467scons-old-llvm:
Michel Dänzer88319f22019-09-18 16:17:01 +0200468 extends:
469 - scons
Michel Dänzer3a48f452019-11-13 17:43:41 +0100470 - .use-x86_build_old
Michel Dänzerbaa50242019-09-12 11:38:06 +0200471 script:
472 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
Eric Anholt46daaca2019-06-28 16:35:32 -0700473
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100474.test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200475 extends:
476 - .ci-run-policy
Eric Anholt46daaca2019-06-28 16:35:32 -0700477 stage: test
Eric Anholt46daaca2019-06-28 16:35:32 -0700478 variables:
479 GIT_STRATEGY: none # testing doesn't build anything from source
Michel Dänzer576f7b62019-10-22 17:16:52 +0200480 before_script:
Eric Anholt46daaca2019-06-28 16:35:32 -0700481 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
482 - rm -rf install
483 - tar -xf artifacts/install.tar
Samuel Pitoiseteab328f2019-11-14 14:00:46 +0100484 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
Eric Anholt46daaca2019-06-28 16:35:32 -0700485 artifacts:
Rob Clarkfdaf7772019-11-17 11:33:01 -0800486 when: always
Eric Anholt46daaca2019-06-28 16:35:32 -0700487 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
488 paths:
489 - results/
Michel Dänzercccb68b2019-09-13 11:13:12 +0200490 dependencies:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100491 - meson-testing
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100492
493.test-gl:
494 extends:
495 - .test
496 variables:
497 TAG: *x86_test-gl
498 image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG"
Michel Dänzerc5aa2712019-10-22 11:19:17 +0200499 needs:
Samuel Pitoiset66b56272019-11-19 12:23:41 +0100500 - meson-testing
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100501 - x86_test-gl
Eric Anholt46daaca2019-06-28 16:35:32 -0700502
Samuel Pitoiset0b246d32019-11-18 09:30:27 +0100503.test-vk:
504 extends:
505 - .test
506 variables:
507 TAG: *x86_test-vk
508 image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG"
509 needs:
510 - meson-testing
511 - x86_test-vk
512
Michel Dänzer576f7b62019-10-22 17:16:52 +0200513.piglit-test:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100514 extends: .test-gl
Michel Dänzera3b3d3b2019-11-25 18:42:10 +0100515 artifacts:
516 when: on_failure
517 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
518 paths:
519 - summary/
Michel Dänzer576f7b62019-10-22 17:16:52 +0200520 variables:
521 LIBGL_ALWAYS_SOFTWARE: 1
522 PIGLIT_NO_WINDOW: 1
523 script:
524 - artifacts/piglit/run.sh
525
526piglit-quick_gl:
527 extends: .piglit-test
528 variables:
529 LP_NUM_THREADS: 0
530 PIGLIT_OPTIONS: >
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100531 --process-isolation false
Michel Dänzer576f7b62019-10-22 17:16:52 +0200532 -x arb_gpu_shader5
Eric Anholt3097efe2019-12-04 16:13:38 -0800533 -x egl_ext_device_
534 -x egl_ext_platform_device
Michel Dänzer576f7b62019-10-22 17:16:52 +0200535 -x glx-multithread-clearbuffer
536 -x glx-multithread-shader-compile
537 -x max-texture-size
538 -x maxsize
539 PIGLIT_PROFILES: quick_gl
540
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100541piglit-glslparser:
542 extends: .piglit-test
543 variables:
544 LP_NUM_THREADS: 0
545 PIGLIT_PROFILES: glslparser
546
547piglit-quick_shader:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200548 extends: .piglit-test
549 variables:
550 LP_NUM_THREADS: 1
551 PIGLIT_OPTIONS: >
552 -x spec@arb_arrays_of_arrays@execution@ubo
553 -x spec@arb_gpu_shader_int64@execution$$
554 -x spec@arb_separate_shader_objects@execution
555 -x spec@arb_separate_shader_objects@linker
556 -x spec@arb_shader_storage_buffer_object@execution
557 -x spec@glsl-1.50@execution@built-in-functions
Michel Dänzer5585b8e2019-12-03 10:45:28 +0100558 PIGLIT_PROFILES: quick_shader
Michel Dänzer576f7b62019-10-22 17:16:52 +0200559
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100560.deqp-test:
Michel Dänzer576f7b62019-10-22 17:16:52 +0200561 variables:
562 DEQP_SKIPS: deqp-default-skips.txt
563 script:
564 - ./artifacts/deqp-runner.sh
565
Samuel Pitoiset16b999b2019-11-19 08:39:00 +0100566.deqp-test-gl:
567 extends:
568 - .test-gl
569 - .deqp-test
570
571.deqp-test-vk:
572 extends:
573 - .test-vk
574 - .deqp-test
575 variables:
576 DEQP_VER: vk
577
Eric Anholt46daaca2019-06-28 16:35:32 -0700578test-llvmpipe-gles2:
Eric Anholt46daaca2019-06-28 16:35:32 -0700579 variables:
580 DEQP_VER: gles2
Eric Anholtf08c8102019-11-04 10:54:41 -0800581 DEQP_PARALLEL: 4
582 # Don't use threads inside llvmpipe, we've already got all 4 cores
583 # busy with DEQP_PARALLEL.
584 LP_NUM_THREADS: 0
Eric Anholt46daaca2019-06-28 16:35:32 -0700585 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
586 LIBGL_ALWAYS_SOFTWARE: "true"
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100587 extends: .deqp-test-gl
Eric Anholt553cd822019-08-09 10:32:40 -0700588
589test-softpipe-gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200590 extends: test-llvmpipe-gles2
Eric Anholt553cd822019-08-09 10:32:40 -0700591 variables:
Eric Anholt553cd822019-08-09 10:32:40 -0700592 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
Eric Anholtf08c8102019-11-04 10:54:41 -0800593 DEQP_SKIPS: deqp-softpipe-skips.txt
Eric Anholt553cd822019-08-09 10:32:40 -0700594 GALLIUM_DRIVER: "softpipe"
Eric Anholt553cd822019-08-09 10:32:40 -0700595
Eric Anholt52843ec2019-11-05 10:31:29 -0800596test-softpipe-gles3:
597 parallel: 2
Eric Anholt553cd822019-08-09 10:32:40 -0700598 variables:
599 DEQP_VER: gles3
Eric Anholt52843ec2019-11-05 10:31:29 -0800600 extends: test-softpipe-gles2
601
602test-softpipe-gles31:
603 parallel: 4
604 variables:
605 DEQP_VER: gles31
606 extends: test-softpipe-gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700607
Michel Dänzer128581d2019-09-11 18:55:43 +0200608arm64_a630_gles2:
Michel Dänzerc6c76522019-11-11 18:13:28 +0100609 extends:
Samuel Pitoiset520a77d2019-11-18 09:15:12 +0100610 - .deqp-test-gl
Michel Dänzerc6c76522019-11-11 18:13:28 +0100611 - .use-arm_test
Eric Anholt6f0dc082019-06-28 16:35:32 -0700612 variables:
613 DEQP_VER: gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700614 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
615 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
616 NIR_VALIDATE: 0
Eric Anholtdd76a6f2019-11-21 05:12:58 -0800617 DEQP_PARALLEL: 4
Rob Clarkfdaf7772019-11-17 11:33:01 -0800618 FLAKES_CHANNEL: "#freedreno-ci"
Eric Anholt6f0dc082019-06-28 16:35:32 -0700619 tags:
620 - mesa-cheza
621 dependencies:
622 - meson-arm64
Eric Anholt6f0dc082019-06-28 16:35:32 -0700623
Michel Dänzer128581d2019-09-11 18:55:43 +0200624arm64_a630_gles31:
625 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700626 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200627 DEQP_VER: gles31
Eric Anholt6f0dc082019-06-28 16:35:32 -0700628
629arm64_a630_gles3:
Michel Dänzer128581d2019-09-11 18:55:43 +0200630 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700631 variables:
632 DEQP_VER: gles3
633
Michel Dänzer128581d2019-09-11 18:55:43 +0200634arm64_a306_gles2:
Michel Dänzer128581d2019-09-11 18:55:43 +0200635 extends: arm64_a630_gles2
Eric Anholt6f0dc082019-06-28 16:35:32 -0700636 variables:
Michel Dänzer128581d2019-09-11 18:55:43 +0200637 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
638 DEQP_SKIPS: deqp-default-skips.txt
Michel Dänzer128581d2019-09-11 18:55:43 +0200639 tags:
640 - db410c
Samuel Pitoisetc1a36272019-11-13 11:03:52 +0100641
642# RADV CI
643.test-radv:
644 variables:
645 VK_DRIVER: radeon
646 # Can only be triggered manually on personal branches because RADV is the only
647 # driver that does Vulkan testing at the moment.
648 rules:
649 # Never test RADV by default in the main project.
650 - if: '$CI_PROJECT_PATH == "mesa/mesa"'
651 when: never
652 # Never test RADV by default for merge requests.
653 - if: '$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == $CI_COMMIT_REF_NAME'
654 when: never
655 # Otherwise, allow testing RADV if the test image for VK has been manually
656 # started.
657 - when: on_success
658
659radv_polaris10_vkcts:
660 extends:
661 - .deqp-test-vk
662 - .test-radv
663 variables:
664 DEQP_PARALLEL: 4
665 DEQP_SKIPS: deqp-radv-polaris10-skips.txt
666 tags:
667 - polaris10