blob: 792bbfb13f7330aa40828631cbb57dc6e3f90342 [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001# This is the tag of the docker image used for the build jobs. If the
2# image doesn't exist yet, the containers-build 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.
Eric Engestrom329f5cd2019-01-20 11:21:45 +000015variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020016 UPSTREAM_REPO: mesa/mesa
Eric Anholtf60defa2019-04-10 15:59:12 -070017 DEBIAN_TAG: "2019-07-23"
Michel Dänzerd00b1c42019-04-02 16:56:54 +020018 DEBIAN_VERSION: stretch-slim
19 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020020
21include:
22 - project: 'wayland/ci-templates'
23 ref: c73dae8b84697ef18e2dbbf4fed7386d9652b0cd
Michel Dänzerd00b1c42019-04-02 16:56:54 +020024 file: '/templates/debian.yml'
Eric Engestrom329f5cd2019-01-20 11:21:45 +000025
Eric Engestrom329f5cd2019-01-20 11:21:45 +000026stages:
27 - containers-build
Eric Engestrom46d23c02019-01-20 11:26:53 +000028 - build+test
Eric Engestrom329f5cd2019-01-20 11:21:45 +000029
30
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000031# When to automatically run the CI
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020032.ci-run-policy: &ci-run-policy
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000033 only:
Michel Dänzerb48e64f2019-04-10 10:33:13 +020034 - branches@mesa/mesa
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000035 - merge_requests
36 - /^ci([-/].*)?$/
Michel Dänzer6140ed32019-03-26 18:39:41 +010037 retry:
38 max: 2
39 when:
40 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000041
42
Eric Engestrom329f5cd2019-01-20 11:21:45 +000043# CONTAINERS
44
Michel Dänzerd00b1c42019-04-02 16:56:54 +020045debian:
46 extends: .debian@container-ifnot-exists
Eric Engestrom329f5cd2019-01-20 11:21:45 +000047 stage: containers-build
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020048 <<: *ci-run-policy
Eric Engestrom329f5cd2019-01-20 11:21:45 +000049 variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020050 GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
Michel Dänzerd00b1c42019-04-02 16:56:54 +020051 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +000052
53
54# BUILD
55
56.build:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020057 <<: *ci-run-policy
Michel Dänzerd00b1c42019-04-02 16:56:54 +020058 image: $DEBIAN_IMAGE
Eric Engestrom46d23c02019-01-20 11:26:53 +000059 stage: build+test
Michel Dänzera3f34f92019-03-26 18:35:59 +010060 cache:
61 paths:
62 - ccache
Eric Engestrom46d23c02019-01-20 11:26:53 +000063 artifacts:
Eric Anholtdd3d0b22019-07-24 09:27:48 -070064 when: always
65 paths:
66 - _build/meson-logs/*.txt
67 # scons:
68 - _build/*/config.log
Eric Anholtf60defa2019-04-10 15:59:12 -070069 - shader-db
Michel Dänzere9de19f2019-04-04 18:01:27 +020070 variables:
71 CCACHE_COMPILERCHECK: "content"
Eric Engestrom23b485c2019-02-12 16:59:27 +000072 # Use ccache transparently, and print stats before/after
73 before_script:
74 - export PATH="/usr/lib/ccache:$PATH"
75 - export CCACHE_BASEDIR="$PWD"
76 - export CCACHE_DIR="$PWD/ccache"
Eric Engestrom23b485c2019-02-12 16:59:27 +000077 - ccache --zero-stats || true
78 - ccache --show-stats || true
79 after_script:
80 - export CCACHE_DIR="$PWD/ccache"
81 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +000082
83.meson-build:
84 extends: .build
Eric Engestrom23b485c2019-02-12 16:59:27 +000085 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +020086 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +000087
Eric Engestrom06b245b2019-01-23 15:46:10 +000088.scons-build:
89 extends: .build
90 variables:
91 SCONSFLAGS: "-j4"
92 script:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +000093 - if test -n "$LLVM_VERSION"; then
94 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
95 fi
Eric Engestrom06b245b2019-01-23 15:46:10 +000096 - scons $SCONS_TARGET
97 - eval $SCONS_CHECK_COMMAND
98
Michel Dänzera2cce702019-03-20 15:58:31 +010099# NOTE: Building SWR is 2x (yes two) times slower than all the other
100# gallium drivers combined.
101# Start this early so that it doesn't limit the total run time.
Eric Engestrom41407c62019-03-08 16:33:07 +0000102#
103# We also put softpipe (and therefore gallium nine, which requires
104# it) here, since softpipe/llvmpipe can't be built alongside classic
105# swrast.
Eric Engestrom1291c682019-04-16 18:06:53 +0200106#
107# Putting glvnd here is arbitrary, but we want it in one of the builds
108# for coverage.
109meson-swr-glvnd:
Michel Dänzera2cce702019-03-20 15:58:31 +0100110 extends: .meson-build
111 variables:
112 UNWIND: "true"
113 DRI_LOADERS: >
Eric Engestrom1291c682019-04-16 18:06:53 +0200114 -D glvnd=true
115 -D egl=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100116 GALLIUM_ST: >
Eric Engestrom41407c62019-03-08 16:33:07 +0000117 -D dri3=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100118 -D gallium-vdpau=false
119 -D gallium-xvmc=false
120 -D gallium-omx=disabled
121 -D gallium-va=false
122 -D gallium-xa=false
Eric Engestrom41407c62019-03-08 16:33:07 +0000123 -D gallium-nine=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100124 -D gallium-opencl=disabled
Eric Engestrom41407c62019-03-08 16:33:07 +0000125 -D osmesa=gallium
126 GALLIUM_DRIVERS: "swr,swrast,iris"
Michel Dänzera2cce702019-03-20 15:58:31 +0100127 LLVM_VERSION: "6.0"
128
129meson-clang:
130 extends: .meson-build
131 variables:
132 UNWIND: "true"
133 DRI_DRIVERS: "auto"
134 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100135 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200136 CC: "ccache clang-8"
137 CXX: "ccache clang++-8"
Michel Dänzere9de19f2019-04-04 18:01:27 +0200138 before_script:
139 - export CCACHE_BASEDIR="$PWD" CCACHE_DIR="$PWD/ccache"
140 - ccache --zero-stats --show-stats || true
141 # clang++ breaks if it picks up the GCC 8 directory without libstdc++.so
142 - apt-get remove -y libgcc-8-dev
Michel Dänzera2cce702019-03-20 15:58:31 +0100143
Michel Dänzer82b30092019-05-03 18:19:25 +0200144scons-swr:
145 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000146 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200147 SCONS_TARGET: "swr=1"
148 SCONS_CHECK_COMMAND: "true"
149 LLVM_VERSION: "6.0"
150
151scons-win64:
152 extends: .scons-build
153 variables:
154 SCONS_TARGET: platform=windows machine=x86_64
155 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000156
Eric Engestrom41407c62019-03-08 16:33:07 +0000157meson-main:
Eric Engestromd73265e2019-01-28 17:38:17 +0000158 extends: .meson-build
159 variables:
Eric Engestrom41407c62019-03-08 16:33:07 +0000160 UNWIND: "true"
Eric Engestromd73265e2019-01-28 17:38:17 +0000161 DRI_LOADERS: >
162 -D glx=dri
163 -D gbm=true
164 -D egl=true
165 -D platforms=x11,wayland,drm,surfaceless
166 -D osmesa=classic
167 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
168 GALLIUM_ST: >
169 -D dri3=true
Eric Anholtf60defa2019-04-10 15:59:12 -0700170 -D tools=drm-shim
Eric Engestrom41407c62019-03-08 16:33:07 +0000171 -D gallium-extra-hud=true
172 -D gallium-vdpau=true
173 -D gallium-xvmc=true
174 -D gallium-omx=bellagio
175 -D gallium-va=true
176 -D gallium-xa=true
Eric Engestromd73265e2019-01-28 17:38:17 +0000177 -D gallium-nine=false
178 -D gallium-opencl=disabled
Eric Engestrom41407c62019-03-08 16:33:07 +0000179 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
180 LLVM_VERSION: "7"
Eric Engestrom6a1f6092019-03-12 10:25:54 +0000181 EXTRA_OPTION: >
182 -D tools=all
Eric Anholtf60defa2019-04-10 15:59:12 -0700183 MESON_SHADERDB: "true"
Eric Engestromd73265e2019-01-28 17:38:17 +0000184
Michel Dänzer68977152019-05-03 10:58:48 +0200185meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000186 extends: .meson-build
187 variables:
188 UNWIND: "true"
189 DRI_LOADERS: >
190 -D glx=disabled
191 -D egl=false
192 -D gbm=false
193 GALLIUM_ST: >
194 -D dri3=false
195 -D gallium-vdpau=false
196 -D gallium-xvmc=false
197 -D gallium-omx=disabled
198 -D gallium-va=false
199 -D gallium-xa=false
200 -D gallium-nine=false
201 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200202 script:
203 - export GALLIUM_DRIVERS="r600,radeonsi"
204 - .gitlab-ci/meson-build.sh
205 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
206 - export GALLIUM_DRIVERS="i915,r600"
207 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
208 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
209 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
210 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000211
Michel Dänzer82b30092019-05-03 18:19:25 +0200212meson-vulkan:
213 extends: .meson-build
214 variables:
215 UNWIND: "false"
216 DRI_LOADERS: >
217 -D glx=disabled
218 -D gbm=false
219 -D egl=false
220 -D platforms=x11,wayland,drm
221 -D osmesa=none
222 GALLIUM_ST: >
223 -D dri3=true
224 -D gallium-vdpau=false
225 -D gallium-xvmc=false
226 -D gallium-omx=disabled
227 -D gallium-va=false
228 -D gallium-xa=false
229 -D gallium-nine=false
230 -D gallium-opencl=disabled
231 VULKAN_DRIVERS: intel,amd,freedreno
232 LLVM_VERSION: "7"
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200233 EXTRA_OPTION: >
234 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200235
Eric Anholt11aa32a2019-07-11 12:58:28 -0700236.meson-cross:
237 extends: .meson-build
238 variables:
239 UNWIND: "false"
240 DRI_LOADERS: >
241 -D glx=disabled
242 -D gbm=false
243 -D egl=false
244 -D platforms=surfaceless
245 -D osmesa=none
246 GALLIUM_ST: >
247 -D dri3=false
248 -D gallium-vdpau=false
249 -D gallium-xvmc=false
250 -D gallium-omx=disabled
251 -D gallium-va=false
252 -D gallium-xa=false
253 -D gallium-nine=false
254 -D llvm=false
255 CROSS: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700256 --cross /tmp/cross_file.txt
257
258 script:
259 - /usr/share/meson/debcrossgen --arch ${ARCH} -o /tmp/cross_file.txt
260 # Work around a bug in debcrossgen that should be fixed in the next release
261 - sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" /tmp/cross_file.txt
262 - .gitlab-ci/meson-build.sh
263
264meson-armhf:
265 extends: .meson-cross
266 variables:
267 ARCH: armhf
268 VULKAN_DRIVERS: freedreno
269 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
270 # Disable the tests since we're cross compiling.
271 EXTRA_OPTION: >
272 -D build-tests=false
273 -D I-love-half-baked-turnips=true
274 -D vulkan-overlay-layer=true
275
276meson-arm64:
277 extends: .meson-cross
278 variables:
279 ARCH: arm64
280 VULKAN_DRIVERS: freedreno
281 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
282 # Disable the tests since we're cross compiling.
283 EXTRA_OPTION: >
284 -D build-tests=false
285 -D I-love-half-baked-turnips=true
286 -D vulkan-overlay-layer=true
287
288meson-i386:
289 extends: .meson-cross
290 variables:
291 ARCH: i386
292 VULKAN_DRIVERS: intel
293 GALLIUM_DRIVERS: "swrast"
294 # Disable i386 tests, because u_format_tests gets precision
295 # failures in dxtn unpacking
296 EXTRA_OPTION: >
297 -D build-tests=false
298 -D vulkan-overlay-layer=true
299
Eric Engestromfaf9e402019-02-26 14:40:29 +0000300scons-nollvm:
Eric Engestrom06b245b2019-01-23 15:46:10 +0000301 extends: .scons-build
302 variables:
303 SCONS_TARGET: "llvm=0"
304 SCONS_CHECK_COMMAND: "scons llvm=0 check"
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000305
Eric Engestromfaf9e402019-02-26 14:40:29 +0000306scons-llvm:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000307 extends: .scons-build
308 variables:
309 SCONS_TARGET: "llvm=1"
310 SCONS_CHECK_COMMAND: "scons llvm=1 check"
Michel Dänzer9b2473c2019-04-11 18:38:30 +0200311 LLVM_VERSION: "3.4"
312 # LLVM 3.4 packages were built with an old libstdc++ ABI
313 CXX: "g++ -D_GLIBCXX_USE_CXX11_ABI=0"