Bump version for 19.1 branch
[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 #
130 # Putting glvnd here is arbitrary, but we want it in one of the builds
131 # for coverage.
132 meson-swr-glvnd:
133 extends: .meson-build
134 variables:
135 UNWIND: "true"
136 DRI_LOADERS: >
137 -D glvnd=true
138 -D egl=true
139 GALLIUM_ST: >
140 -D dri3=true
141 -D gallium-vdpau=false
142 -D gallium-xvmc=false
143 -D gallium-omx=disabled
144 -D gallium-va=false
145 -D gallium-xa=false
146 -D gallium-nine=true
147 -D gallium-opencl=disabled
148 -D osmesa=gallium
149 GALLIUM_DRIVERS: "swr,swrast,iris"
150 LLVM_VERSION: "6.0"
151
152 meson-clang:
153 extends: .meson-build
154 variables:
155 UNWIND: "true"
156 DRI_DRIVERS: "auto"
157 GALLIUM_DRIVERS: "auto"
158 VULKAN_DRIVERS: intel,amd,freedreno
159 CC: "ccache clang-8"
160 CXX: "ccache clang++-8"
161 before_script:
162 - export CCACHE_BASEDIR="$PWD" CCACHE_DIR="$PWD/ccache"
163 - ccache --zero-stats --show-stats || true
164 # clang++ breaks if it picks up the GCC 8 directory without libstdc++.so
165 - apt-get remove -y libgcc-8-dev
166
167 meson-vulkan:
168 extends: .meson-build
169 variables:
170 UNWIND: "false"
171 DRI_LOADERS: >
172 -D glx=disabled
173 -D gbm=false
174 -D egl=false
175 -D platforms=x11,wayland,drm
176 -D osmesa=none
177 GALLIUM_ST: >
178 -D dri3=true
179 -D gallium-vdpau=false
180 -D gallium-xvmc=false
181 -D gallium-omx=disabled
182 -D gallium-va=false
183 -D gallium-xa=false
184 -D gallium-nine=false
185 -D gallium-opencl=disabled
186 VULKAN_DRIVERS: intel,amd,freedreno
187 LLVM_VERSION: "7"
188
189 meson-main:
190 extends: .meson-build
191 variables:
192 UNWIND: "true"
193 DRI_LOADERS: >
194 -D glx=dri
195 -D gbm=true
196 -D egl=true
197 -D platforms=x11,wayland,drm,surfaceless
198 -D osmesa=classic
199 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
200 GALLIUM_ST: >
201 -D dri3=true
202 -D gallium-extra-hud=true
203 -D gallium-vdpau=true
204 -D gallium-xvmc=true
205 -D gallium-omx=bellagio
206 -D gallium-va=true
207 -D gallium-xa=true
208 -D gallium-nine=false
209 -D gallium-opencl=disabled
210 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
211 LLVM_VERSION: "7"
212
213 meson-clover-llvm:
214 extends: .meson-build
215 variables:
216 UNWIND: "true"
217 DRI_LOADERS: >
218 -D glx=disabled
219 -D egl=false
220 -D gbm=false
221 GALLIUM_ST: >
222 -D dri3=false
223 -D gallium-vdpau=false
224 -D gallium-xvmc=false
225 -D gallium-omx=disabled
226 -D gallium-va=false
227 -D gallium-xa=false
228 -D gallium-nine=false
229 -D gallium-opencl=icd
230 GALLIUM_DRIVERS: "r600,radeonsi"
231
232 meson-clover-llvm39:
233 extends: meson-clover-llvm
234 variables:
235 GALLIUM_DRIVERS: "i915,r600"
236 LLVM_VERSION: "3.9"
237
238 scons-nollvm:
239 extends: .scons-build
240 variables:
241 SCONS_TARGET: "llvm=0"
242 SCONS_CHECK_COMMAND: "scons llvm=0 check"
243
244 scons-llvm:
245 extends: .scons-build
246 variables:
247 SCONS_TARGET: "llvm=1"
248 SCONS_CHECK_COMMAND: "scons llvm=1 check"
249 LLVM_VERSION: "3.4"
250 # LLVM 3.4 packages were built with an old libstdc++ ABI
251 CXX: "g++ -D_GLIBCXX_USE_CXX11_ABI=0"
252
253 scons-swr:
254 extends: .scons-build
255 variables:
256 SCONS_TARGET: "swr=1"
257 SCONS_CHECK_COMMAND: "true"
258 LLVM_VERSION: "6.0"
259
260 scons-win64:
261 extends: .scons-build
262 variables:
263 SCONS_TARGET: platform=windows machine=x86_64
264 SCONS_CHECK_COMMAND: "true"