blob: a153c3dae1c00a1a79267db847a940fff07e91c5 [file] [log] [blame]
Eric Engestrom329f5cd2019-01-20 11:21:45 +00001# 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 :)
18variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020019 UPSTREAM_REPO: mesa/mesa
Eric Engestrom7c15a872019-03-08 12:47:23 +000020 DEBIAN_TAG: "2019-05-01"
Michel Dänzerd00b1c42019-04-02 16:56:54 +020021 DEBIAN_VERSION: stretch-slim
22 DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020023
24include:
25 - project: 'wayland/ci-templates'
26 ref: c73dae8b84697ef18e2dbbf4fed7386d9652b0cd
Michel Dänzerd00b1c42019-04-02 16:56:54 +020027 file: '/templates/debian.yml'
Eric Engestrom329f5cd2019-01-20 11:21:45 +000028
Eric Engestrom329f5cd2019-01-20 11:21:45 +000029stages:
30 - containers-build
Eric Engestrom46d23c02019-01-20 11:26:53 +000031 - build+test
Eric Engestrom329f5cd2019-01-20 11:21:45 +000032
33
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000034# When to automatically run the CI
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020035.ci-run-policy: &ci-run-policy
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000036 only:
Michel Dänzerb48e64f2019-04-10 10:33:13 +020037 - branches@mesa/mesa
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000038 - merge_requests
39 - /^ci([-/].*)?$/
Michel Dänzer6140ed32019-03-26 18:39:41 +010040 retry:
41 max: 2
42 when:
43 - runner_system_failure
Eric Engestrom7f5d9c22019-02-22 15:52:08 +000044
45
Eric Engestrom329f5cd2019-01-20 11:21:45 +000046# CONTAINERS
47
Michel Dänzerd00b1c42019-04-02 16:56:54 +020048debian:
49 extends: .debian@container-ifnot-exists
Eric Engestrom329f5cd2019-01-20 11:21:45 +000050 stage: containers-build
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020051 <<: *ci-run-policy
Eric Engestrom329f5cd2019-01-20 11:21:45 +000052 variables:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020053 GIT_STRATEGY: none # no need to pull the whole tree for rebuilding the image
Michel Dänzerd00b1c42019-04-02 16:56:54 +020054 DEBIAN_EXEC: 'bash .gitlab-ci/debian-install.sh'
Eric Engestrom46d23c02019-01-20 11:26:53 +000055
56
57# BUILD
58
59.build:
Benjamin Tissoires7f8a9a12019-04-02 09:24:00 +020060 <<: *ci-run-policy
Michel Dänzerd00b1c42019-04-02 16:56:54 +020061 image: $DEBIAN_IMAGE
Eric Engestrom46d23c02019-01-20 11:26:53 +000062 stage: build+test
Michel Dänzera3f34f92019-03-26 18:35:59 +010063 cache:
64 paths:
65 - ccache
Eric Engestrom46d23c02019-01-20 11:26:53 +000066 artifacts:
67 when: on_failure
68 untracked: true
Michel Dänzere9de19f2019-04-04 18:01:27 +020069 variables:
70 CCACHE_COMPILERCHECK: "content"
Eric Engestrom23b485c2019-02-12 16:59:27 +000071 # 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"
Eric Engestrom23b485c2019-02-12 16:59:27 +000076 - ccache --zero-stats || true
77 - ccache --show-stats || true
78 after_script:
79 - export CCACHE_DIR="$PWD/ccache"
80 - ccache --show-stats
Eric Engestrom46d23c02019-01-20 11:26:53 +000081
82.meson-build:
83 extends: .build
Eric Engestrom23b485c2019-02-12 16:59:27 +000084 script:
Eric Engestrom46d23c02019-01-20 11:26:53 +000085 # 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
Michel Dänzer5078d662019-04-17 12:53:23 +020097 -D buildtype=debug
Eric Engestrom46d23c02019-01-20 11:26:53 +000098 -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:-[]}
Bas Nieuwenhuizen158d45d2019-03-13 00:15:09 +0100105 -D I-love-half-baked-turnips=true
Eric Engestrom46d23c02019-01-20 11:26:53 +0000106 - cd _build
107 - meson configure
Eric Engestrom68a93832019-02-13 14:25:45 +0000108 - ninja -j4
Michel Dänzerecb3eed2019-04-03 12:23:51 +0200109 - LC_ALL=C.UTF-8 ninja test
Eric Engestrom46d23c02019-01-20 11:26:53 +0000110
Eric Engestrom06b245b2019-01-23 15:46:10 +0000111.scons-build:
112 extends: .build
113 variables:
114 SCONSFLAGS: "-j4"
115 script:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000116 - if test -n "$LLVM_VERSION"; then
117 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
118 fi
Eric Engestrom06b245b2019-01-23 15:46:10 +0000119 - scons $SCONS_TARGET
120 - eval $SCONS_CHECK_COMMAND
121
Michel Dänzera2cce702019-03-20 15:58:31 +0100122# 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.
Eric Engestrom41407c62019-03-08 16:33:07 +0000125#
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.
Michel Dänzera2cce702019-03-20 15:58:31 +0100129meson-gallium-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: >
Eric Engestrom41407c62019-03-08 16:33:07 +0000138 -D dri3=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100139 -D gallium-vdpau=false
140 -D gallium-xvmc=false
141 -D gallium-omx=disabled
142 -D gallium-va=false
143 -D gallium-xa=false
Eric Engestrom41407c62019-03-08 16:33:07 +0000144 -D gallium-nine=true
Michel Dänzera2cce702019-03-20 15:58:31 +0100145 -D gallium-opencl=disabled
Eric Engestrom41407c62019-03-08 16:33:07 +0000146 -D osmesa=gallium
147 GALLIUM_DRIVERS: "swr,swrast,iris"
Michel Dänzera2cce702019-03-20 15:58:31 +0100148 LLVM_VERSION: "6.0"
149
150meson-clang:
151 extends: .meson-build
152 variables:
153 UNWIND: "true"
154 DRI_DRIVERS: "auto"
155 GALLIUM_DRIVERS: "auto"
Eric Engestrom47f419d2019-05-01 12:09:26 +0100156 VULKAN_DRIVERS: intel,amd,freedreno
Michel Dänzer3fca2b72019-04-05 10:36:29 +0200157 CC: "ccache clang-8"
158 CXX: "ccache clang++-8"
Michel Dänzere9de19f2019-04-04 18:01:27 +0200159 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
Michel Dänzera2cce702019-03-20 15:58:31 +0100164
Eric Engestromfaf9e402019-02-26 14:40:29 +0000165meson-vulkan:
Eric Engestrom46d23c02019-01-20 11:26:53 +0000166 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
Bas Nieuwenhuizen158d45d2019-03-13 00:15:09 +0100184 VULKAN_DRIVERS: intel,amd,freedreno
Eric Engestrom46d23c02019-01-20 11:26:53 +0000185 LLVM_VERSION: "7"
Eric Engestrom89a74672019-01-21 09:42:37 +0000186
Eric Engestrom41407c62019-03-08 16:33:07 +0000187meson-main:
Eric Engestromd73265e2019-01-28 17:38:17 +0000188 extends: .meson-build
189 variables:
Eric Engestrom41407c62019-03-08 16:33:07 +0000190 UNWIND: "true"
Eric Engestromd73265e2019-01-28 17:38:17 +0000191 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
Eric Engestrom41407c62019-03-08 16:33:07 +0000200 -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
Eric Engestromd73265e2019-01-28 17:38:17 +0000206 -D gallium-nine=false
207 -D gallium-opencl=disabled
Eric Engestrom41407c62019-03-08 16:33:07 +0000208 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
209 LLVM_VERSION: "7"
Eric Engestromd73265e2019-01-28 17:38:17 +0000210
Eric Engestromfaf9e402019-02-26 14:40:29 +0000211meson-glvnd:
Eric Engestromba26bc42019-01-29 08:57:17 +0000212 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
Eric Engestromfaf9e402019-02-26 14:40:29 +0000230meson-gallium-radeonsi:
Eric Engestrom06e8f192019-01-28 17:45:26 +0000231 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=disabled
247 GALLIUM_DRIVERS: "radeonsi"
248 LLVM_VERSION: "7"
249
Eric Engestrom3006f9d2019-03-06 17:59:03 +0000250meson-gallium-clover-llvm:
Eric Engestromb5a70af2019-01-28 18:05:22 +0000251 extends: .meson-build
252 variables:
253 UNWIND: "true"
254 DRI_LOADERS: >
255 -D glx=disabled
256 -D egl=false
257 -D gbm=false
258 GALLIUM_ST: >
259 -D dri3=false
260 -D gallium-vdpau=false
261 -D gallium-xvmc=false
262 -D gallium-omx=disabled
263 -D gallium-va=false
264 -D gallium-xa=false
265 -D gallium-nine=false
266 -D gallium-opencl=icd
Eric Engestrom8dab7072019-01-28 18:09:24 +0000267 GALLIUM_DRIVERS: "r600,radeonsi"
Eric Engestrom3006f9d2019-03-06 17:59:03 +0000268
269meson-gallium-clover-llvm39:
270 extends: meson-gallium-clover-llvm
271 variables:
Eric Engestrom41407c62019-03-08 16:33:07 +0000272 GALLIUM_DRIVERS: "i915,r600"
Eric Engestrom3006f9d2019-03-06 17:59:03 +0000273 LLVM_VERSION: "3.9"
Eric Engestrom8dab7072019-01-28 18:09:24 +0000274
Eric Engestromfaf9e402019-02-26 14:40:29 +0000275scons-nollvm:
Eric Engestrom06b245b2019-01-23 15:46:10 +0000276 extends: .scons-build
277 variables:
278 SCONS_TARGET: "llvm=0"
279 SCONS_CHECK_COMMAND: "scons llvm=0 check"
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000280
Eric Engestromfaf9e402019-02-26 14:40:29 +0000281scons-llvm:
Eric Engestromd4c6d4d2019-01-28 16:30:36 +0000282 extends: .scons-build
283 variables:
284 SCONS_TARGET: "llvm=1"
285 SCONS_CHECK_COMMAND: "scons llvm=1 check"
Michel Dänzer9b2473c2019-04-11 18:38:30 +0200286 LLVM_VERSION: "3.4"
287 # LLVM 3.4 packages were built with an old libstdc++ ABI
288 CXX: "g++ -D_GLIBCXX_USE_CXX11_ABI=0"
Eric Engestrom6a19ec92019-01-28 16:33:22 +0000289
Eric Engestromfaf9e402019-02-26 14:40:29 +0000290scons-swr:
Eric Engestrom6a19ec92019-01-28 16:33:22 +0000291 extends: .scons-build
292 variables:
293 SCONS_TARGET: "swr=1"
294 SCONS_CHECK_COMMAND: "true"
295 LLVM_VERSION: "6.0"
Eric Engestrom7c15a872019-03-08 12:47:23 +0000296
297scons-win64:
298 extends: .scons-build
299 variables:
300 SCONS_TARGET: platform=windows machine=x86_64
301 SCONS_CHECK_COMMAND: "true"