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