vulkan/util: meson build - add wayland client include
[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-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.
15 #
16 # The format of the tag is "%Y-%m-%d-${counter}" where ${counter} stays
17 # at "01" unless you have multiple updates on the same day :)
18 variables:
19 UBUNTU_TAG: 2019-03-05-01
20 UBUNTU_IMAGE: "$CI_REGISTRY_IMAGE/ubuntu:$UBUNTU_TAG"
21 UBUNTU_IMAGE_MAIN: "registry.freedesktop.org/mesa/mesa/ubuntu:$UBUNTU_TAG"
22
23 cache:
24 paths:
25 - ccache
26
27 stages:
28 - containers-build
29 - build+test
30
31
32 # When to automatically run the CI
33 .ci-run-policy:
34 only:
35 - master
36 - merge_requests
37 - /^ci([-/].*)?$/
38
39
40 # CONTAINERS
41
42 ubuntu:
43 extends: .ci-run-policy
44 stage: containers-build
45 image: docker:stable
46 services:
47 - docker:dind
48 variables:
49 DOCKER_HOST: tcp://docker:2375
50 DOCKER_DRIVER: overlay2
51 script:
52 # Enable experimental features such as `docker manifest inspect`
53 - mkdir -p ~/.docker
54 - "echo '{\"experimental\": \"enabled\"}' > ~/.docker/config.json"
55 - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
56 # Check if the image (with the specific tag) already exists
57 - docker manifest inspect $UBUNTU_IMAGE && exit || true
58 # Try to re-use the image from the main repository's registry
59 - docker image pull $UBUNTU_IMAGE_MAIN &&
60 docker image tag $UBUNTU_IMAGE_MAIN $UBUNTU_IMAGE &&
61 docker image push $UBUNTU_IMAGE && exit || true
62 - docker build -t $UBUNTU_IMAGE -f .gitlab-ci/Dockerfile.ubuntu .
63 - docker push $UBUNTU_IMAGE
64
65
66 # BUILD
67
68 .build:
69 extends: .ci-run-policy
70 image: $UBUNTU_IMAGE
71 stage: build+test
72 artifacts:
73 when: on_failure
74 untracked: true
75 # Use ccache transparently, and print stats before/after
76 before_script:
77 - export PATH="/usr/lib/ccache:$PATH"
78 - export CCACHE_BASEDIR="$PWD"
79 - export CCACHE_DIR="$PWD/ccache"
80 - export CCACHE_COMPILERCHECK=content
81 - ccache --zero-stats || true
82 - ccache --show-stats || true
83 after_script:
84 - export CCACHE_DIR="$PWD/ccache"
85 - ccache --show-stats
86
87 .meson-build:
88 extends: .build
89 script:
90 # We need to control the version of llvm-config we're using, so we'll
91 # generate a native file to do so. This requires meson >=0.49
92 - if test -n "$LLVM_VERSION"; then
93 LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
94 echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file;
95 $LLVM_CONFIG --version;
96 else
97 touch native.file;
98 fi
99 - meson --version
100 - meson _build
101 --native-file=native.file
102 -D build-tests=true
103 -D libunwind=${UNWIND}
104 ${DRI_LOADERS}
105 -D dri-drivers=${DRI_DRIVERS:-[]}
106 ${GALLIUM_ST}
107 -D gallium-drivers=${GALLIUM_DRIVERS:-[]}
108 -D vulkan-drivers=${VULKAN_DRIVERS:-[]}
109 -D I-love-half-baked-turnips=true
110 - cd _build
111 - meson configure
112 - ninja -j4
113 - ninja test
114
115 .make-build:
116 extends: .build
117 variables:
118 MAKEFLAGS: "-j4"
119 script:
120 - if test -n "$LLVM_VERSION"; then
121 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
122 fi
123 - mkdir build
124 - cd build
125 - ../autogen.sh
126 --enable-autotools
127 --enable-debug
128 $LIBUNWIND_FLAGS
129 $DRI_LOADERS
130 --with-dri-drivers=$DRI_DRIVERS
131 $GALLIUM_ST
132 --with-gallium-drivers=$GALLIUM_DRIVERS
133 --with-vulkan-drivers=$VULKAN_DRIVERS
134 --disable-llvm-shared-libs
135 - make
136 - eval $MAKE_CHECK_COMMAND
137
138 .scons-build:
139 extends: .build
140 variables:
141 SCONSFLAGS: "-j4"
142 script:
143 - if test -n "$LLVM_VERSION"; then
144 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
145 fi
146 - scons $SCONS_TARGET
147 - eval $SCONS_CHECK_COMMAND
148
149 meson-vulkan:
150 extends: .meson-build
151 variables:
152 UNWIND: "false"
153 DRI_LOADERS: >
154 -D glx=disabled
155 -D gbm=false
156 -D egl=false
157 -D platforms=x11,wayland,drm
158 -D osmesa=none
159 GALLIUM_ST: >
160 -D dri3=true
161 -D gallium-vdpau=false
162 -D gallium-xvmc=false
163 -D gallium-omx=disabled
164 -D gallium-va=false
165 -D gallium-xa=false
166 -D gallium-nine=false
167 -D gallium-opencl=disabled
168 VULKAN_DRIVERS: intel,amd,freedreno
169 LLVM_VERSION: "7"
170
171 meson-loader-classic-dri:
172 extends: .meson-build
173 variables:
174 UNWIND: "false"
175 DRI_LOADERS: >
176 -D glx=dri
177 -D gbm=true
178 -D egl=true
179 -D platforms=x11,wayland,drm,surfaceless
180 -D osmesa=classic
181 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
182 GALLIUM_ST: >
183 -D dri3=true
184 -D gallium-vdpau=false
185 -D gallium-xvmc=false
186 -D gallium-omx=disabled
187 -D gallium-va=false
188 -D gallium-xa=false
189 -D gallium-nine=false
190 -D gallium-opencl=disabled
191
192 meson-glvnd:
193 extends: .meson-build
194 variables:
195 UNWIND: "true"
196 DRI_LOADERS: >
197 -D glvnd=true
198 -D egl=true
199 -D gbm=true
200 -D glx=dri
201 DRI_DRIVERS: "i965"
202 GALLIUM_ST: >
203 -D gallium-vdpau=false
204 -D gallium-xvmc=false
205 -D gallium-omx=disabled
206 -D gallium-va=false
207 -D gallium-xa=false
208 -D gallium-nine=false
209 -D gallium-opencl=disabled
210
211 # NOTE: Building SWR is 2x (yes two) times slower than all the other
212 # gallium drivers combined.
213 # Start this early so that it doesn't hunder the run time.
214 meson-gallium-swr:
215 extends: .meson-build
216 variables:
217 UNWIND: "true"
218 DRI_LOADERS: >
219 -D glx=disabled
220 -D egl=false
221 -D gbm=false
222 GALLIUM_ST: >
223 -D dri3=false
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 GALLIUM_DRIVERS: "swr"
232 LLVM_VERSION: "6.0"
233
234 meson-gallium-radeonsi:
235 extends: .meson-build
236 variables:
237 UNWIND: "true"
238 DRI_LOADERS: >
239 -D glx=disabled
240 -D egl=false
241 -D gbm=false
242 GALLIUM_ST: >
243 -D dri3=false
244 -D gallium-vdpau=false
245 -D gallium-xvmc=false
246 -D gallium-omx=disabled
247 -D gallium-va=false
248 -D gallium-xa=false
249 -D gallium-nine=false
250 -D gallium-opencl=disabled
251 GALLIUM_DRIVERS: "radeonsi"
252 LLVM_VERSION: "7"
253
254 meson-gallium-drivers-other:
255 extends: .meson-build
256 variables:
257 UNWIND: "true"
258 DRI_LOADERS: >
259 -D glx=disabled
260 -D egl=false
261 -D gbm=false
262 GALLIUM_ST: >
263 -D dri3=false
264 -D gallium-vdpau=false
265 -D gallium-xvmc=false
266 -D gallium-omx=disabled
267 -D gallium-va=false
268 -D gallium-xa=false
269 -D gallium-nine=false
270 -D gallium-opencl=disabled
271 GALLIUM_DRIVERS: "i915,iris,nouveau,kmsro,r300,r600,freedreno,svga,swrast,v3d,vc4,virgl,etnaviv,panfrost"
272 LLVM_VERSION: "5.0"
273
274 meson-gallium-clover-llvm:
275 extends: .meson-build
276 variables:
277 UNWIND: "true"
278 DRI_LOADERS: >
279 -D glx=disabled
280 -D egl=false
281 -D gbm=false
282 GALLIUM_ST: >
283 -D dri3=false
284 -D gallium-vdpau=false
285 -D gallium-xvmc=false
286 -D gallium-omx=disabled
287 -D gallium-va=false
288 -D gallium-xa=false
289 -D gallium-nine=false
290 -D gallium-opencl=icd
291 GALLIUM_DRIVERS: "r600,radeonsi"
292
293 meson-gallium-clover-llvm39:
294 extends: meson-gallium-clover-llvm
295 variables:
296 GALLIUM_DRIVERS: "r600"
297 LLVM_VERSION: "3.9"
298
299 meson-gallium-st-other:
300 extends: .meson-build
301 variables:
302 UNWIND: "true"
303 DRI_LOADERS: >
304 -D glx=disabled
305 -D egl=false
306 -D gbm=false
307 GALLIUM_ST: >
308 -D dri3=true
309 -D gallium-vdpau=true
310 -D gallium-xvmc=true
311 -D gallium-omx=bellagio
312 -D gallium-va=true
313 -D gallium-xa=true
314 -D gallium-nine=true
315 -D gallium-opencl=disabled
316 -D osmesa=gallium
317 GALLIUM_DRIVERS: "nouveau,swrast"
318 LLVM_VERSION: "5.0"
319
320 make-vulkan:
321 extends: .make-build
322 variables:
323 MAKE_CHECK_COMMAND: "make -C src/gtest check && make -C src/intel check"
324 LLVM_VERSION: "7"
325 DRI_LOADERS: >
326 --disable-glx
327 --disable-gbm
328 --disable-egl
329 --with-platforms=x11,wayland,drm
330 DRI_DRIVERS: ""
331 GALLIUM_ST: >
332 --enable-dri
333 --enable-dri3
334 --disable-opencl
335 --disable-xa
336 --disable-nine
337 --disable-xvmc
338 --disable-vdpau
339 --disable-va
340 --disable-omx-bellagio
341 --disable-gallium-osmesa
342 VULKAN_DRIVERS: intel,radeon
343 LIBUNWIND_FLAGS: --disable-libunwind
344
345 make-loader-classic-dri:
346 extends: .make-build
347 variables:
348 MAKE_CHECK_COMMAND: "make check"
349 DRI_LOADERS: >
350 --enable-glx
351 --enable-gbm
352 --enable-egl
353 --with-platforms=x11,wayland,drm,surfaceless
354 --enable-osmesa
355 DRI_DRIVERS: "i915,i965,radeon,r200,swrast,nouveau"
356 GALLIUM_ST: >
357 --enable-dri
358 --disable-opencl
359 --disable-xa
360 --disable-nine
361 --disable-xvmc
362 --disable-vdpau
363 --disable-va
364 --disable-omx-bellagio
365 --disable-gallium-osmesa
366 LIBUNWIND_FLAGS: --disable-libunwind
367
368 # NOTE: Building SWR is 2x (yes two) times slower than all the other
369 # gallium drivers combined.
370 # Start this early so that it doesn't hunder the run time.
371 make-gallium-drivers-swr:
372 extends: .make-build
373 variables:
374 MAKE_CHECK_COMMAND: "true"
375 LLVM_VERSION: "6.0"
376 DRI_LOADERS: >
377 --disable-glx
378 --disable-gbm
379 --disable-egl
380 GALLIUM_ST: >
381 --enable-dri
382 --disable-opencl
383 --disable-xa
384 --disable-nine
385 --disable-xvmc
386 --disable-vdpau
387 --disable-va
388 --disable-omx-bellagio
389 --disable-gallium-osmesa
390 GALLIUM_DRIVERS: "swr"
391 LIBUNWIND_FLAGS: --enable-libunwind
392
393 make-gallium-drivers-radeonsi:
394 extends: make-gallium-drivers-swr
395 variables:
396 LLVM_VERSION: "7"
397 GALLIUM_DRIVERS: "radeonsi"
398
399 make-gallium-drivers-other:
400 extends: make-gallium-drivers-swr
401 variables:
402 LLVM_VERSION: "3.9"
403 GALLIUM_DRIVERS: "i915,nouveau,kmsro,r300,r600,freedreno,svga,swrast,v3d,vc4,virgl,etnaviv"
404
405 make-gallium-st-clover-llvm:
406 extends: .make-build
407 variables:
408 MAKE_CHECK_COMMAND: "true"
409 DRI_LOADERS: >
410 --disable-glx
411 --disable-gbm
412 --disable-egl
413 GALLIUM_ST: >
414 --disable-dri
415 --enable-opencl
416 --enable-opencl-icd
417 --enable-llvm
418 --disable-xa
419 --disable-nine
420 --disable-xvmc
421 --disable-vdpau
422 --disable-va
423 --disable-omx-bellagio
424 --disable-gallium-osmesa
425 LIBUNWIND_FLAGS: --enable-libunwind
426 GALLIUM_DRIVERS: "r600,radeonsi"
427 LLVM_VERSION: "7"
428
429 make-gallium-st-clover-llvm-39:
430 extends: make-gallium-st-clover-llvm
431 variables:
432 LLVM_VERSION: "3.9"
433 GALLIUM_DRIVERS: "r600"
434
435 make-gallium-st-other:
436 extends: .make-build
437 variables:
438 MAKE_CHECK_COMMAND: "true"
439 # We should be testing 3.3, but 3.9 is the oldest that still exists in ubuntu
440 LLVM_VERSION: "3.9"
441 DRI_LOADERS: >
442 --disable-glx
443 --disable-gbm
444 --disable-egl
445 GALLIUM_ST: >
446 --enable-dri
447 --disable-opencl
448 --enable-xa
449 --enable-nine
450 --enable-xvmc
451 --enable-vdpau
452 --enable-va
453 --enable-omx-bellagio
454 --enable-gallium-osmesa
455 # We need swrast for osmesa and nine.
456 # i915 most likely doesn't work with most ST.
457 # Regardless - we're doing a quick build test here.
458 GALLIUM_DRIVERS: "i915,swrast"
459 LIBUNWIND_FLAGS: --enable-libunwind
460
461 scons-nollvm:
462 extends: .scons-build
463 variables:
464 SCONS_TARGET: "llvm=0"
465 SCONS_CHECK_COMMAND: "scons llvm=0 check"
466
467 scons-llvm:
468 extends: .scons-build
469 variables:
470 SCONS_TARGET: "llvm=1"
471 SCONS_CHECK_COMMAND: "scons llvm=1 check"
472 LLVM_VERSION: "3.9"
473
474 scons-swr:
475 extends: .scons-build
476 variables:
477 SCONS_TARGET: "swr=1"
478 SCONS_CHECK_COMMAND: "true"
479 LLVM_VERSION: "6.0"