blob: a8a16f6c1fb505bbb8a9b6098de55fe8088721da [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 Anholt11aa32a2019-07-11 12:58:28 -070017 DEBIAN_TAG: "2019-07-11"
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
Michel Dänzere9de19f2019-04-04 18:01:27 +020069 variables:
70 CCACHE_COMPILERCHECK: "content"
Eric Engestrom23b485c2019-02-12 16:59:27 +000071 # Use ccache transparently, and print stats before/after
72 before_script:
73 - export PATH="/usr/lib/ccache:$PATH"
74 - export CCACHE_BASEDIR="$PWD"
75 - export CCACHE_DIR="$PWD/ccache"
Eric Engestrom23b485c2019-02-12 16:59:27 +000076 - ccache --zero-stats || true
77 - ccache --show-stats || true
78 after_script:
79 - export CCACHE_DIR="$PWD/ccache"
80 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +000081
82.meson-build:
83 extends: .build
Eric Engestrom23b485c2019-02-12 16:59:27 +000084 script:
Michel Dänzercc2b3a92019-05-03 10:49:43 +020085 - .gitlab-ci/meson-build.sh
Eric Engestrom46d23c02019-01-20 11:26:53 +000086
Eric Engestrom06b245b2019-01-23 15:46:10 +000087.scons-build:
88 extends: .build
89 variables:
90 SCONSFLAGS: "-j4"
91 script:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +000092 - if test -n "$LLVM_VERSION"; then
93 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
94 fi
Eric Engestrom06b245b2019-01-23 15:46:10 +000095 - scons $SCONS_TARGET
96 - eval $SCONS_CHECK_COMMAND
97
Michel Dänzera2cce702019-03-20 15:58:31 +010098# NOTE: Building SWR is 2x (yes two) times slower than all the other
99# gallium drivers combined.
100# Start this early so that it doesn't limit the total run time.
Eric Engestrom41407c62019-03-08 16:33:07 +0000101#
102# We also put softpipe (and therefore gallium nine, which requires
103# it) here, since softpipe/llvmpipe can't be built alongside classic
104# swrast.
Eric Engestrom1291c682019-04-16 18:06:53 +0200105#
106# Putting glvnd here is arbitrary, but we want it in one of the builds
107# for coverage.
108meson-swr-glvnd:
Michel Dänzera2cce702019-03-20 15:58:31 +0100109 extends: .meson-build
110 variables:
111 UNWIND: "true"
112 DRI_LOADERS: >
Eric Engestrom1291c682019-04-16 18:06:53 +0200113 -D glvnd=true
114 -D egl=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100115 GALLIUM_ST: >
Eric Engestrom41407c62019-03-08 16:33:07 +0000116 -D dri3=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100117 -D gallium-vdpau=false
118 -D gallium-xvmc=false
119 -D gallium-omx=disabled
120 -D gallium-va=false
121 -D gallium-xa=false
Eric Engestrom41407c62019-03-08 16:33:07 +0000122 -D gallium-nine=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100123 -D gallium-opencl=disabled
Eric Engestrom41407c62019-03-08 16:33:07 +0000124 -D osmesa=gallium
125 GALLIUM_DRIVERS: "swr,swrast,iris"
Michel Dänzera2cce702019-03-20 15:58:31 +0100126 LLVM_VERSION: "6.0"
127
128meson-clang:
129 extends: .meson-build
130 variables:
131 UNWIND: "true"
132 DRI_DRIVERS: "auto"
133 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100134 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200135 CC: "ccache clang-8"
136 CXX: "ccache clang++-8"
Michel Dänzere9de19f2019-04-04 18:01:27 +0200137 before_script:
138 - export CCACHE_BASEDIR="$PWD" CCACHE_DIR="$PWD/ccache"
139 - ccache --zero-stats --show-stats || true
140 # clang++ breaks if it picks up the GCC 8 directory without libstdc++.so
141 - apt-get remove -y libgcc-8-dev
Michel Dänzera2cce702019-03-20 15:58:31 +0100142
Michel Dänzer82b30092019-05-03 18:19:25 +0200143scons-swr:
144 extends: .scons-build
Eric Engestrom46d23c02019-01-20 11:26:53 +0000145 variables:
Michel Dänzer82b30092019-05-03 18:19:25 +0200146 SCONS_TARGET: "swr=1"
147 SCONS_CHECK_COMMAND: "true"
148 LLVM_VERSION: "6.0"
149
150scons-win64:
151 extends: .scons-build
152 variables:
153 SCONS_TARGET: platform=windows machine=x86_64
154 SCONS_CHECK_COMMAND: "true"
Eric Engestrom89a74672019-01-21 09:42:37 +0000155
Eric Engestrom41407c62019-03-08 16:33:07 +0000156meson-main:
Eric Engestromd73265e2019-01-28 17:38:17 +0000157 extends: .meson-build
158 variables:
Eric Engestrom41407c62019-03-08 16:33:07 +0000159 UNWIND: "true"
Eric Engestromd73265e2019-01-28 17:38:17 +0000160 DRI_LOADERS: >
161 -D glx=dri
162 -D gbm=true
163 -D egl=true
164 -D platforms=x11,wayland,drm,surfaceless
165 -D osmesa=classic
166 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
167 GALLIUM_ST: >
168 -D dri3=true
Eric Engestrom41407c62019-03-08 16:33:07 +0000169 -D gallium-extra-hud=true
170 -D gallium-vdpau=true
171 -D gallium-xvmc=true
172 -D gallium-omx=bellagio
173 -D gallium-va=true
174 -D gallium-xa=true
Eric Engestromd73265e2019-01-28 17:38:17 +0000175 -D gallium-nine=false
176 -D gallium-opencl=disabled
Eric Engestrom41407c62019-03-08 16:33:07 +0000177 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
178 LLVM_VERSION: "7"
Eric Engestrom6a1f6092019-03-12 10:25:54 +0000179 EXTRA_OPTION: >
180 -D tools=all
Eric Engestromd73265e2019-01-28 17:38:17 +0000181
Michel Dänzer68977152019-05-03 10:58:48 +0200182meson-clover:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000183 extends: .meson-build
184 variables:
185 UNWIND: "true"
186 DRI_LOADERS: >
187 -D glx=disabled
188 -D egl=false
189 -D gbm=false
190 GALLIUM_ST: >
191 -D dri3=false
192 -D gallium-vdpau=false
193 -D gallium-xvmc=false
194 -D gallium-omx=disabled
195 -D gallium-va=false
196 -D gallium-xa=false
197 -D gallium-nine=false
198 -D gallium-opencl=icd
Michel Dänzer68977152019-05-03 10:58:48 +0200199 script:
200 - export GALLIUM_DRIVERS="r600,radeonsi"
201 - .gitlab-ci/meson-build.sh
202 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
203 - export GALLIUM_DRIVERS="i915,r600"
204 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
205 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
206 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
207 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
Eric Engestrom8dab7072019-01-28 18:09:24 +0000208
Michel Dänzer82b30092019-05-03 18:19:25 +0200209meson-vulkan:
210 extends: .meson-build
211 variables:
212 UNWIND: "false"
213 DRI_LOADERS: >
214 -D glx=disabled
215 -D gbm=false
216 -D egl=false
217 -D platforms=x11,wayland,drm
218 -D osmesa=none
219 GALLIUM_ST: >
220 -D dri3=true
221 -D gallium-vdpau=false
222 -D gallium-xvmc=false
223 -D gallium-omx=disabled
224 -D gallium-va=false
225 -D gallium-xa=false
226 -D gallium-nine=false
227 -D gallium-opencl=disabled
228 VULKAN_DRIVERS: intel,amd,freedreno
229 LLVM_VERSION: "7"
Eric Engestrom5f8d29a2019-05-08 18:17:23 +0200230 EXTRA_OPTION: >
231 -D vulkan-overlay-layer=true
Michel Dänzer82b30092019-05-03 18:19:25 +0200232
Eric Anholt11aa32a2019-07-11 12:58:28 -0700233.meson-cross:
234 extends: .meson-build
235 variables:
236 UNWIND: "false"
237 DRI_LOADERS: >
238 -D glx=disabled
239 -D gbm=false
240 -D egl=false
241 -D platforms=surfaceless
242 -D osmesa=none
243 GALLIUM_ST: >
244 -D dri3=false
245 -D gallium-vdpau=false
246 -D gallium-xvmc=false
247 -D gallium-omx=disabled
248 -D gallium-va=false
249 -D gallium-xa=false
250 -D gallium-nine=false
251 -D llvm=false
252 CROSS: >
Eric Anholt11aa32a2019-07-11 12:58:28 -0700253 --cross /tmp/cross_file.txt
254
255 script:
256 - /usr/share/meson/debcrossgen --arch ${ARCH} -o /tmp/cross_file.txt
257 # Work around a bug in debcrossgen that should be fixed in the next release
258 - sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" /tmp/cross_file.txt
259 - .gitlab-ci/meson-build.sh
260
261meson-armhf:
262 extends: .meson-cross
263 variables:
264 ARCH: armhf
265 VULKAN_DRIVERS: freedreno
266 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
267 # Disable the tests since we're cross compiling.
268 EXTRA_OPTION: >
269 -D build-tests=false
270 -D I-love-half-baked-turnips=true
271 -D vulkan-overlay-layer=true
272
273meson-arm64:
274 extends: .meson-cross
275 variables:
276 ARCH: arm64
277 VULKAN_DRIVERS: freedreno
278 GALLIUM_DRIVERS: "etnaviv,freedreno,kmsro,lima,nouveau,panfrost,tegra,v3d,vc4"
279 # Disable the tests since we're cross compiling.
280 EXTRA_OPTION: >
281 -D build-tests=false
282 -D I-love-half-baked-turnips=true
283 -D vulkan-overlay-layer=true
284
285meson-i386:
286 extends: .meson-cross
287 variables:
288 ARCH: i386
289 VULKAN_DRIVERS: intel
290 GALLIUM_DRIVERS: "swrast"
291 # Disable i386 tests, because u_format_tests gets precision
292 # failures in dxtn unpacking
293 EXTRA_OPTION: >
294 -D build-tests=false
295 -D vulkan-overlay-layer=true
296
Eric Engestromfaf9e402019-02-26 14:40:29 +0000297scons-nollvm:
Eric Engestrom06b245b2019-01-23 15:46:10 +0000298 extends: .scons-build
299 variables:
300 SCONS_TARGET: "llvm=0"
301 SCONS_CHECK_COMMAND: "scons llvm=0 check"
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000302
Eric Engestromfaf9e402019-02-26 14:40:29 +0000303scons-llvm:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000304 extends: .scons-build
305 variables:
306 SCONS_TARGET: "llvm=1"
307 SCONS_CHECK_COMMAND: "scons llvm=1 check"
Michel Dänzer9b2473c2019-04-11 18:38:30 +0200308 LLVM_VERSION: "3.4"
309 # LLVM 3.4 packages were built with an old libstdc++ ABI
310 CXX: "g++ -D_GLIBCXX_USE_CXX11_ABI=0"