gitlab-ci: Make sure clang job actually uses ccache
[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 .scons-build:
116 extends: .build
117 variables:
118 SCONSFLAGS: "-j4"
119 script:
120 - if test -n "$LLVM_VERSION"; then
121 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
122 fi
123 - scons $SCONS_TARGET
124 - eval $SCONS_CHECK_COMMAND
125
126 autotools:
127 extends: .build
128 variables:
129 MAKEFLAGS: "-j8"
130 LLVM_CONFIG: llvm-config-7
131 script:
132 - mkdir build
133 - cd build
134 - ../autogen.sh
135 --enable-autotools
136 --enable-debug
137 --disable-llvm-shared-libs
138 - make
139 - make check
140
141 # NOTE: Building SWR is 2x (yes two) times slower than all the other
142 # gallium drivers combined.
143 # Start this early so that it doesn't limit the total run time.
144 meson-gallium-swr:
145 extends: .meson-build
146 variables:
147 UNWIND: "true"
148 DRI_LOADERS: >
149 -D glx=disabled
150 -D egl=false
151 -D gbm=false
152 GALLIUM_ST: >
153 -D dri3=false
154 -D gallium-vdpau=false
155 -D gallium-xvmc=false
156 -D gallium-omx=disabled
157 -D gallium-va=false
158 -D gallium-xa=false
159 -D gallium-nine=false
160 -D gallium-opencl=disabled
161 GALLIUM_DRIVERS: "swr"
162 LLVM_VERSION: "6.0"
163
164 meson-clang:
165 extends: .meson-build
166 variables:
167 UNWIND: "true"
168 DRI_DRIVERS: "auto"
169 GALLIUM_DRIVERS: "auto"
170 CC: "ccache clang-7"
171 CXX: "ccache clang++-7"
172
173 meson-vulkan:
174 extends: .meson-build
175 variables:
176 UNWIND: "false"
177 DRI_LOADERS: >
178 -D glx=disabled
179 -D gbm=false
180 -D egl=false
181 -D platforms=x11,wayland,drm
182 -D osmesa=none
183 GALLIUM_ST: >
184 -D dri3=true
185 -D gallium-vdpau=false
186 -D gallium-xvmc=false
187 -D gallium-omx=disabled
188 -D gallium-va=false
189 -D gallium-xa=false
190 -D gallium-nine=false
191 -D gallium-opencl=disabled
192 VULKAN_DRIVERS: intel,amd,freedreno
193 LLVM_VERSION: "7"
194
195 meson-loader-classic-dri:
196 extends: .meson-build
197 variables:
198 UNWIND: "false"
199 DRI_LOADERS: >
200 -D glx=dri
201 -D gbm=true
202 -D egl=true
203 -D platforms=x11,wayland,drm,surfaceless
204 -D osmesa=classic
205 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
206 GALLIUM_ST: >
207 -D dri3=true
208 -D gallium-vdpau=false
209 -D gallium-xvmc=false
210 -D gallium-omx=disabled
211 -D gallium-va=false
212 -D gallium-xa=false
213 -D gallium-nine=false
214 -D gallium-opencl=disabled
215
216 meson-glvnd:
217 extends: .meson-build
218 variables:
219 UNWIND: "true"
220 DRI_LOADERS: >
221 -D glvnd=true
222 -D egl=true
223 -D gbm=true
224 -D glx=dri
225 DRI_DRIVERS: "i965"
226 GALLIUM_ST: >
227 -D gallium-vdpau=false
228 -D gallium-xvmc=false
229 -D gallium-omx=disabled
230 -D gallium-va=false
231 -D gallium-xa=false
232 -D gallium-nine=false
233 -D gallium-opencl=disabled
234
235 meson-gallium-radeonsi:
236 extends: .meson-build
237 variables:
238 UNWIND: "true"
239 DRI_LOADERS: >
240 -D glx=disabled
241 -D egl=false
242 -D gbm=false
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 gallium-opencl=disabled
252 GALLIUM_DRIVERS: "radeonsi"
253 LLVM_VERSION: "7"
254
255 meson-gallium-drivers-other:
256 extends: .meson-build
257 variables:
258 UNWIND: "true"
259 DRI_LOADERS: >
260 -D glx=disabled
261 -D egl=false
262 -D gbm=false
263 GALLIUM_ST: >
264 -D dri3=false
265 -D gallium-vdpau=false
266 -D gallium-xvmc=false
267 -D gallium-omx=disabled
268 -D gallium-va=false
269 -D gallium-xa=false
270 -D gallium-nine=false
271 -D gallium-opencl=disabled
272 GALLIUM_DRIVERS: "i915,iris,nouveau,kmsro,r300,r600,freedreno,svga,swrast,v3d,vc4,virgl,etnaviv,panfrost"
273 LLVM_VERSION: "5.0"
274
275 meson-gallium-clover-llvm:
276 extends: .meson-build
277 variables:
278 UNWIND: "true"
279 DRI_LOADERS: >
280 -D glx=disabled
281 -D egl=false
282 -D gbm=false
283 GALLIUM_ST: >
284 -D dri3=false
285 -D gallium-vdpau=false
286 -D gallium-xvmc=false
287 -D gallium-omx=disabled
288 -D gallium-va=false
289 -D gallium-xa=false
290 -D gallium-nine=false
291 -D gallium-opencl=icd
292 GALLIUM_DRIVERS: "r600,radeonsi"
293
294 meson-gallium-clover-llvm39:
295 extends: meson-gallium-clover-llvm
296 variables:
297 GALLIUM_DRIVERS: "r600"
298 LLVM_VERSION: "3.9"
299
300 meson-gallium-st-other:
301 extends: .meson-build
302 variables:
303 UNWIND: "true"
304 DRI_LOADERS: >
305 -D glx=disabled
306 -D egl=false
307 -D gbm=false
308 GALLIUM_ST: >
309 -D dri3=true
310 -D gallium-vdpau=true
311 -D gallium-xvmc=true
312 -D gallium-omx=bellagio
313 -D gallium-va=true
314 -D gallium-xa=true
315 -D gallium-nine=true
316 -D gallium-opencl=disabled
317 -D osmesa=gallium
318 GALLIUM_DRIVERS: "nouveau,swrast"
319 LLVM_VERSION: "5.0"
320
321 scons-nollvm:
322 extends: .scons-build
323 variables:
324 SCONS_TARGET: "llvm=0"
325 SCONS_CHECK_COMMAND: "scons llvm=0 check"
326
327 scons-llvm:
328 extends: .scons-build
329 variables:
330 SCONS_TARGET: "llvm=1"
331 SCONS_CHECK_COMMAND: "scons llvm=1 check"
332 LLVM_VERSION: "3.9"
333
334 scons-swr:
335 extends: .scons-build
336 variables:
337 SCONS_TARGET: "swr=1"
338 SCONS_CHECK_COMMAND: "true"
339 LLVM_VERSION: "6.0"