gitlab-ci: refactor out some common stuff for Windows and Linux
[mesa.git] / .gitlab-ci.yml
1 # This is the tag of the docker image used for the build jobs. If the
2 # image doesn't exist yet, the containers stage generates it.
3 #
4 # In order to generate a new image, one should generally change the tag.
5 # While removing the image from the registry would also work, that's not
6 # recommended except for ephemeral images during development: Replacing
7 # an image after a significant amount of time might pull in newer
8 # versions of gcc/clang or other packages, which might break the build
9 # with older commits using the same tag.
10 #
11 # After merging a change resulting in generating a new image to the
12 # main repository, it's recommended to remove the image from the source
13 # repository's container registry, so that the image from the main
14 # repository's registry will be used there as well.
15 variables:
16 UPSTREAM_REPO: mesa/mesa
17 DEBIAN_TAG: "2019-10-22"
18 DEBIAN_ARM64_TAG: "arm64v8-2019-10-22"
19 STRETCH_TAG: "2019-09-18"
20 DEBIAN_VERSION: buster-slim
21 STRETCH_VERSION: stretch-slim
22 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
23 DEBIAN_ARM64_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_ARM64_TAG"
24 STRETCH_IMAGE: "$CI_REGISTRY_IMAGE/debian/$STRETCH_VERSION:$STRETCH_TAG"
25
26 include:
27 - project: 'wayland/ci-templates'
28 ref: 1f7f57c64ff4ebbf7292e3b7a13600518b8cb24c
29 file: '/templates/debian.yml'
30
31 include:
32 - local: '/.gitlab-ci/lava-gitlab-ci.yml'
33
34 stages:
35 - container
36 - build
37 - test
38
39
40 # When to automatically run the CI
41 .ci-run-policy:
42 only:
43 - branches@mesa/mesa
44 - merge_requests
45 - /^ci([-/].*)?$/
46 retry:
47 max: 2
48 when:
49 - runner_system_failure
50
51 .ci-deqp-artifacts:
52 artifacts:
53 when: always
54 untracked: false
55 paths:
56 # Watch out! Artifacts are relative to the build dir.
57 # https://gitlab.com/gitlab-org/gitlab-ce/commit/8788fb925706cad594adf6917a6c5f6587dd1521
58 - artifacts
59
60 # Build the normal CI native and cross-build docker images.
61
62 .container:
63 stage: container
64 extends:
65 - .ci-run-policy
66 variables:
67 # no need to pull the whole repo to build the container image
68 GIT_STRATEGY: none
69
70 debian-10:amd64:
71 extends:
72 - .debian@container-ifnot-exists
73 - .container
74 variables:
75 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
76
77 .use-debian-10:amd64:
78 image: $DEBIAN_IMAGE
79 needs:
80 - debian-10:amd64
81
82 debian-9:amd64:
83 extends: debian-10:amd64
84 variables:
85 DEBIAN_TAG: $STRETCH_TAG
86 DEBIAN_VERSION: $STRETCH_VERSION
87 DEBIAN_IMAGE: $STRETCH_IMAGE
88 DEBIAN_EXEC: 'bash .gitlab-ci/debian-stretch-install.sh'
89
90 .use-debian-9:amd64:
91 image: $STRETCH_IMAGE
92 needs:
93 - debian-9:amd64
94
95 debian-10:arm64:
96 extends:
97 - .debian@container-ifnot-exists@arm64v8
98 - .container
99 variables:
100 DEBIAN_TAG: "$DEBIAN_ARM64_TAG"
101 DEBIAN_EXEC: 'bash .gitlab-ci/debian-arm64-install.sh'
102
103
104 # BUILD
105
106 # Shared between windows and Linux
107 .build-common:
108 extends: .ci-run-policy
109 stage: build
110 artifacts:
111 when: always
112 paths:
113 - _build/meson-logs/*.txt
114 # scons:
115 - build/*/config.log
116 - shader-db
117
118 # Just Linux
119 .build-linux:
120 extends: .build-common
121 cache:
122 key: ${CI_JOB_NAME}
123 paths:
124 - ccache
125 variables:
126 CCACHE_COMPILERCHECK: "content"
127 # Use ccache transparently, and print stats before/after
128 before_script:
129 - export PATH="/usr/lib/ccache:$PATH"
130 - export CCACHE_BASEDIR="$PWD"
131 - export CCACHE_DIR="$PWD/ccache"
132 - ccache --max-size=1500M
133 - ccache --zero-stats || true
134 - ccache --show-stats || true
135 after_script:
136 # In case the install dir is being saved as artifacts, tar it up
137 # so that symlinks and hardlinks aren't each packed separately in
138 # the zip file.
139 - if [ -d install ]; then
140 tar -cf artifacts/install.tar install;
141 fi
142 - export CCACHE_DIR="$PWD/ccache"
143 - ccache --show-stats
144
145 .meson-build:
146 extends:
147 - .build-linux
148 - .use-debian-10:amd64
149 script:
150 - .gitlab-ci/meson-build.sh
151
152 .scons-build:
153 extends:
154 - .build-linux
155 - .use-debian-10:amd64
156 variables:
157 SCONSFLAGS: "-j4"
158 script:
159 - .gitlab-ci/scons-build.sh
160
161 meson-main:
162 extends:
163 - .meson-build
164 - .ci-deqp-artifacts
165 variables:
166 UNWIND: "true"
167 DRI_LOADERS: >
168 -D glx=dri
169 -D gbm=true
170 -D egl=true
171 -D platforms=x11,wayland,drm,surfaceless
172 DRI_DRIVERS: "i915,i965,r100,r200,nouveau"
173 GALLIUM_ST: >
174 -D dri3=true
175 -D gallium-extra-hud=true
176 -D gallium-vdpau=true
177 -D gallium-xvmc=true
178 -D gallium-omx=bellagio
179 -D gallium-va=true
180 -D gallium-xa=true
181 -D gallium-nine=true
182 -D gallium-opencl=disabled
183 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
184 LLVM_VERSION: "7"
185 EXTRA_OPTION: >
186 -D osmesa=gallium
187 -D tools=all
188 MESON_SHADERDB: "true"
189 BUILDTYPE: "debugoptimized"
190
191 .meson-cross:
192 extends:
193 - .meson-build
194 variables:
195 UNWIND: "false"
196 DRI_LOADERS: >
197 -D glx=disabled
198 -D gbm=false
199 -D egl=true
200 -D platforms=surfaceless
201 -D osmesa=none
202 GALLIUM_ST: >
203 -D dri3=false
204 -D gallium-vdpau=false
205 -D gallium-xvmc=false
206 -D gallium-omx=disabled
207 -D gallium-va=false
208 -D gallium-xa=false
209 -D gallium-nine=false
210
211 .meson-arm:
212 extends: .meson-cross
213 image: $DEBIAN_ARM64_IMAGE
214 variables:
215 VULKAN_DRIVERS: freedreno
216 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,swrast,tegra,v3d,vc4"
217 EXTRA_OPTION: >
218 -D I-love-half-baked-turnips=true
219 needs:
220 - debian-10:arm64
221 tags:
222 - aarch64
223
224 meson-armhf:
225 extends: .meson-arm
226 variables:
227 CROSS: armhf
228 LLVM_VERSION: "7"
229
230 meson-arm64:
231 extends:
232 - .meson-arm
233 - .ci-deqp-artifacts
234 variables:
235 BUILDTYPE: "debugoptimized"
236
237 # NOTE: Building SWR is 2x (yes two) times slower than all the other
238 # gallium drivers combined.
239 # Start this early so that it doesn't limit the total run time.
240 #
241 # We also stick the glvnd build here, since we want non-glvnd in
242 # meson-main for actual driver CI.
243 meson-swr-glvnd:
244 extends: .meson-build
245 variables:
246 UNWIND: "true"
247 DRI_LOADERS: >
248 -D glvnd=true
249 -D egl=true
250 GALLIUM_ST: >
251 -D dri3=true
252 -D gallium-vdpau=false
253 -D gallium-xvmc=false
254 -D gallium-omx=disabled
255 -D gallium-va=false
256 -D gallium-xa=false
257 -D gallium-nine=false
258 -D gallium-opencl=disabled
259 GALLIUM_DRIVERS: "swr,iris"
260 LLVM_VERSION: "6.0"
261
262 meson-clang:
263 extends: .meson-build
264 variables:
265 UNWIND: "true"
266 DRI_DRIVERS: "auto"
267 GALLIUM_DRIVERS: "auto"
268 VULKAN_DRIVERS: intel,amd,freedreno
269 CC: "ccache clang-8"
270 CXX: "ccache clang++-8"
271
272 scons-swr:
273 extends: .scons-build
274 variables:
275 SCONS_TARGET: "swr=1"
276 SCONS_CHECK_COMMAND: "true"
277 LLVM_VERSION: "6.0"
278
279 scons-win64:
280 extends: .scons-build
281 variables:
282 SCONS_TARGET: platform=windows machine=x86_64
283 SCONS_CHECK_COMMAND: "true"
284
285 meson-clover:
286 extends: .meson-build
287 variables:
288 UNWIND: "true"
289 DRI_LOADERS: >
290 -D glx=disabled
291 -D egl=false
292 -D gbm=false
293 GALLIUM_ST: >
294 -D dri3=false
295 -D gallium-vdpau=false
296 -D gallium-xvmc=false
297 -D gallium-omx=disabled
298 -D gallium-va=false
299 -D gallium-xa=false
300 -D gallium-nine=false
301 -D gallium-opencl=icd
302 script:
303 - export GALLIUM_DRIVERS="r600,radeonsi"
304 - .gitlab-ci/meson-build.sh
305 - LLVM_VERSION=8 .gitlab-ci/meson-build.sh
306 - export GALLIUM_DRIVERS="i915,r600"
307 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
308 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
309
310 meson-clover-old-llvm:
311 extends:
312 - meson-clover
313 - .use-debian-9:amd64
314 variables:
315 UNWIND: "false"
316 DRI_LOADERS: >
317 -D glx=disabled
318 -D egl=false
319 -D gbm=false
320 -D platforms=drm,surfaceless
321 GALLIUM_DRIVERS: "i915,r600"
322 script:
323 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
324 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
325 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
326
327 meson-vulkan:
328 extends: .meson-build
329 variables:
330 UNWIND: "false"
331 DRI_LOADERS: >
332 -D glx=disabled
333 -D gbm=false
334 -D egl=false
335 -D platforms=x11,wayland,drm
336 -D osmesa=none
337 GALLIUM_ST: >
338 -D dri3=true
339 -D gallium-vdpau=false
340 -D gallium-xvmc=false
341 -D gallium-omx=disabled
342 -D gallium-va=false
343 -D gallium-xa=false
344 -D gallium-nine=false
345 -D gallium-opencl=disabled
346 -D b_sanitize=undefined
347 -D c_args=-fno-sanitize-recover=all
348 -D cpp_args=-fno-sanitize-recover=all
349 UBSAN_OPTIONS: "print_stacktrace=1"
350 VULKAN_DRIVERS: intel,amd,freedreno
351 LLVM_VERSION: "8"
352 EXTRA_OPTION: >
353 -D vulkan-overlay-layer=true
354
355 # While the main point of this build is testing the i386 cross build,
356 # we also use this one to test some other options that are exclusive
357 # with meson-main's choices (classic swrast and osmesa)
358 meson-i386:
359 extends: .meson-cross
360 variables:
361 CROSS: i386
362 VULKAN_DRIVERS: intel
363 DRI_DRIVERS: "swrast"
364 GALLIUM_DRIVERS: "iris"
365 EXTRA_OPTION: >
366 -D vulkan-overlay-layer=true
367 -D llvm=false
368 -D osmesa=classic
369
370 meson-mingw32-x86_64:
371 extends: .meson-build
372 variables:
373 UNWIND: "false"
374 DRI_DRIVERS: ""
375 GALLIUM_DRIVERS: "swrast"
376 EXTRA_OPTION: >
377 -Dllvm=false
378 -Dosmesa=gallium
379 --cross-file=.gitlab-ci/x86_64-w64-mingw32
380
381 scons:
382 extends: .scons-build
383 variables:
384 SCONS_TARGET: "llvm=1"
385 SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
386 script:
387 - SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
388 - LLVM_VERSION=6.0 .gitlab-ci/scons-build.sh
389 - LLVM_VERSION=7 .gitlab-ci/scons-build.sh
390 - LLVM_VERSION=8 .gitlab-ci/scons-build.sh
391
392 scons-old-llvm:
393 extends:
394 - scons
395 - .use-debian-9:amd64
396 script:
397 - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh
398 - LLVM_VERSION=4.0 .gitlab-ci/scons-build.sh
399 - LLVM_VERSION=5.0 .gitlab-ci/scons-build.sh
400
401 .test:
402 extends: .ci-run-policy
403 stage: test
404 variables:
405 GIT_STRATEGY: none # testing doesn't build anything from source
406
407 .deqp-test:
408 extends:
409 - .test
410 - .use-debian-10:amd64
411 variables:
412 DEQP_SKIPS: deqp-default-skips.txt
413 script:
414 # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY
415 - rm -rf install
416 - tar -xf artifacts/install.tar
417 - ./artifacts/deqp-runner.sh
418 artifacts:
419 when: on_failure
420 name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME"
421 paths:
422 - results/
423 dependencies:
424 - meson-main
425 needs:
426 - meson-main
427 - debian-10:amd64
428
429 test-llvmpipe-gles2:
430 parallel: 4
431 variables:
432 DEQP_VER: gles2
433 DEQP_EXPECTED_FAILS: deqp-llvmpipe-fails.txt
434 LIBGL_ALWAYS_SOFTWARE: "true"
435 DEQP_RENDERER_MATCH: "llvmpipe"
436 extends: .deqp-test
437
438 test-softpipe-gles2:
439 extends: test-llvmpipe-gles2
440 variables:
441 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
442 DEQP_RENDERER_MATCH: "softpipe"
443 GALLIUM_DRIVER: "softpipe"
444
445 # The GLES2 CTS run takes about 8 minutes of CPU time, while GLES3 is
446 # 25 minutes. Until we can get its runtime down, just do a partial
447 # (every 10 tests) run.
448 test-softpipe-gles3-limited:
449 variables:
450 DEQP_VER: gles3
451 DEQP_EXPECTED_FAILS: deqp-softpipe-fails.txt
452 LIBGL_ALWAYS_SOFTWARE: "true"
453 DEQP_RENDERER_MATCH: "softpipe"
454 GALLIUM_DRIVER: "softpipe"
455 CI_NODE_INDEX: 1
456 CI_NODE_TOTAL: 10
457 extends: .deqp-test
458
459 arm64_a630_gles2:
460 extends: .deqp-test
461 image: $DEBIAN_ARM64_IMAGE
462 variables:
463 DEQP_VER: gles2
464 DEQP_RENDERER_MATCH: "FD630"
465 DEQP_EXPECTED_FAILS: deqp-freedreno-a630-fails.txt
466 DEQP_SKIPS: deqp-freedreno-a630-skips.txt
467 NIR_VALIDATE: 0
468 tags:
469 - mesa-cheza
470 dependencies:
471 - meson-arm64
472 needs:
473 - meson-arm64
474 - debian-10:arm64
475
476 arm64_a630_gles31:
477 extends: arm64_a630_gles2
478 parallel: 4
479 variables:
480 DEQP_VER: gles31
481
482 arm64_a630_gles3:
483 parallel: 6
484 extends: arm64_a630_gles2
485 variables:
486 DEQP_VER: gles3
487
488 arm64_a306_gles2:
489 parallel: 4
490 extends: arm64_a630_gles2
491 variables:
492 DEQP_EXPECTED_FAILS: deqp-freedreno-a307-fails.txt
493 DEQP_SKIPS: deqp-default-skips.txt
494 DEQP_RENDERER_MATCH: "FD307"
495 tags:
496 - db410c