gitlab-ci: simplify meson job names
[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 UPSTREAM_REPO: mesa/mesa
20 DEBIAN_TAG: "2019-05-01"
21 DEBIAN_VERSION: stretch-slim
22 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
23
24 include:
25 - project: 'wayland/ci-templates'
26 ref: c73dae8b84697ef18e2dbbf4fed7386d9652b0cd
27 file: '/templates/debian.yml'
28
29 stages:
30 - containers-build
31 - build+test
32
33
34 # When to automatically run the CI
35 .ci-run-policy: &ci-run-policy
36 only:
37 - branches@mesa/mesa
38 - merge_requests
39 - /^ci([-/].*)?$/
40 retry:
41 max: 2
42 when:
43 - runner_system_failure
44
45
46 # CONTAINERS
47
48 debian:
49 extends: .debian@container-ifnot-exists
50 stage: containers-build
51 <<: *ci-run-policy
52 variables:
53 GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
54 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
55
56
57 # BUILD
58
59 .build:
60 <<: *ci-run-policy
61 image: $DEBIAN_IMAGE
62 stage: build+test
63 cache:
64 paths:
65 - ccache
66 artifacts:
67 when: on_failure
68 untracked: true
69 variables:
70 CCACHE_COMPILERCHECK: "content"
71 # 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"
76 - ccache --zero-stats || true
77 - ccache --show-stats || true
78 after_script:
79 - export CCACHE_DIR="$PWD/ccache"
80 - ccache --show-stats
81
82 .meson-build:
83 extends: .build
84 script:
85 # We need to control the version of llvm-config we're using, so we'll
86 # generate a native file to do so. This requires meson >=0.49
87 - if test -n "$LLVM_VERSION"; then
88 LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
89 echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file;
90 $LLVM_CONFIG --version;
91 else
92 touch native.file;
93 fi
94 - meson --version
95 - meson _build
96 --native-file=native.file
97 -D buildtype=debug
98 -D build-tests=true
99 -D libunwind=${UNWIND}
100 ${DRI_LOADERS}
101 -D dri-drivers=${DRI_DRIVERS:-[]}
102 ${GALLIUM_ST}
103 -D gallium-drivers=${GALLIUM_DRIVERS:-[]}
104 -D vulkan-drivers=${VULKAN_DRIVERS:-[]}
105 -D I-love-half-baked-turnips=true
106 - cd _build
107 - meson configure
108 - ninja -j4
109 - LC_ALL=C.UTF-8 ninja test
110
111 .scons-build:
112 extends: .build
113 variables:
114 SCONSFLAGS: "-j4"
115 script:
116 - if test -n "$LLVM_VERSION"; then
117 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
118 fi
119 - scons $SCONS_TARGET
120 - eval $SCONS_CHECK_COMMAND
121
122 # NOTE: Building SWR is 2x (yes two) times slower than all the other
123 # gallium drivers combined.
124 # Start this early so that it doesn't limit the total run time.
125 #
126 # We also put softpipe (and therefore gallium nine, which requires
127 # it) here, since softpipe/llvmpipe can't be built alongside classic
128 # swrast.
129 meson-swr:
130 extends: .meson-build
131 variables:
132 UNWIND: "true"
133 DRI_LOADERS: >
134 -D glx=disabled
135 -D egl=false
136 -D gbm=false
137 GALLIUM_ST: >
138 -D dri3=true
139 -D gallium-vdpau=false
140 -D gallium-xvmc=false
141 -D gallium-omx=disabled
142 -D gallium-va=false
143 -D gallium-xa=false
144 -D gallium-nine=true
145 -D gallium-opencl=disabled
146 -D osmesa=gallium
147 GALLIUM_DRIVERS: "swr,swrast,iris"
148 LLVM_VERSION: "6.0"
149
150 meson-clang:
151 extends: .meson-build
152 variables:
153 UNWIND: "true"
154 DRI_DRIVERS: "auto"
155 GALLIUM_DRIVERS: "auto"
156 VULKAN_DRIVERS: intel,amd,freedreno
157 CC: "ccache clang-8"
158 CXX: "ccache clang++-8"
159 before_script:
160 - export CCACHE_BASEDIR="$PWD" CCACHE_DIR="$PWD/ccache"
161 - ccache --zero-stats --show-stats || true
162 # clang++ breaks if it picks up the GCC 8 directory without libstdc++.so
163 - apt-get remove -y libgcc-8-dev
164
165 meson-vulkan:
166 extends: .meson-build
167 variables:
168 UNWIND: "false"
169 DRI_LOADERS: >
170 -D glx=disabled
171 -D gbm=false
172 -D egl=false
173 -D platforms=x11,wayland,drm
174 -D osmesa=none
175 GALLIUM_ST: >
176 -D dri3=true
177 -D gallium-vdpau=false
178 -D gallium-xvmc=false
179 -D gallium-omx=disabled
180 -D gallium-va=false
181 -D gallium-xa=false
182 -D gallium-nine=false
183 -D gallium-opencl=disabled
184 VULKAN_DRIVERS: intel,amd,freedreno
185 LLVM_VERSION: "7"
186
187 meson-main:
188 extends: .meson-build
189 variables:
190 UNWIND: "true"
191 DRI_LOADERS: >
192 -D glx=dri
193 -D gbm=true
194 -D egl=true
195 -D platforms=x11,wayland,drm,surfaceless
196 -D osmesa=classic
197 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
198 GALLIUM_ST: >
199 -D dri3=true
200 -D gallium-extra-hud=true
201 -D gallium-vdpau=true
202 -D gallium-xvmc=true
203 -D gallium-omx=bellagio
204 -D gallium-va=true
205 -D gallium-xa=true
206 -D gallium-nine=false
207 -D gallium-opencl=disabled
208 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
209 LLVM_VERSION: "7"
210
211 meson-glvnd:
212 extends: .meson-build
213 variables:
214 UNWIND: "true"
215 DRI_LOADERS: >
216 -D glvnd=true
217 -D egl=true
218 -D gbm=true
219 -D glx=dri
220 DRI_DRIVERS: "i965"
221 GALLIUM_ST: >
222 -D gallium-vdpau=false
223 -D gallium-xvmc=false
224 -D gallium-omx=disabled
225 -D gallium-va=false
226 -D gallium-xa=false
227 -D gallium-nine=false
228 -D gallium-opencl=disabled
229
230 meson-clover-llvm:
231 extends: .meson-build
232 variables:
233 UNWIND: "true"
234 DRI_LOADERS: >
235 -D glx=disabled
236 -D egl=false
237 -D gbm=false
238 GALLIUM_ST: >
239 -D dri3=false
240 -D gallium-vdpau=false
241 -D gallium-xvmc=false
242 -D gallium-omx=disabled
243 -D gallium-va=false
244 -D gallium-xa=false
245 -D gallium-nine=false
246 -D gallium-opencl=icd
247 GALLIUM_DRIVERS: "r600,radeonsi"
248
249 meson-clover-llvm39:
250 extends: meson-clover-llvm
251 variables:
252 GALLIUM_DRIVERS: "i915,r600"
253 LLVM_VERSION: "3.9"
254
255 scons-nollvm:
256 extends: .scons-build
257 variables:
258 SCONS_TARGET: "llvm=0"
259 SCONS_CHECK_COMMAND: "scons llvm=0 check"
260
261 scons-llvm:
262 extends: .scons-build
263 variables:
264 SCONS_TARGET: "llvm=1"
265 SCONS_CHECK_COMMAND: "scons llvm=1 check"
266 LLVM_VERSION: "3.4"
267 # LLVM 3.4 packages were built with an old libstdc++ ABI
268 CXX: "g++ -D_GLIBCXX_USE_CXX11_ABI=0"
269
270 scons-swr:
271 extends: .scons-build
272 variables:
273 SCONS_TARGET: "swr=1"
274 SCONS_CHECK_COMMAND: "true"
275 LLVM_VERSION: "6.0"
276
277 scons-win64:
278 extends: .scons-build
279 variables:
280 SCONS_TARGET: platform=windows machine=x86_64
281 SCONS_CHECK_COMMAND: "true"