android: virgl: fix libmesa_winsys_virgil_common build and dependencies
[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-08"
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 - .gitlab-ci/meson-build.sh
83
84 .scons-build:
85 extends: .build
86 variables:
87 SCONSFLAGS: "-j4"
88 script:
89 - if test -n "$LLVM_VERSION"; then
90 export LLVM_CONFIG="llvm-config-${LLVM_VERSION}";
91 fi
92 - scons $SCONS_TARGET
93 - eval $SCONS_CHECK_COMMAND
94
95 # NOTE: Building SWR is 2x (yes two) times slower than all the other
96 # gallium drivers combined.
97 # Start this early so that it doesn't limit the total run time.
98 #
99 # We also put softpipe (and therefore gallium nine, which requires
100 # it) here, since softpipe/llvmpipe can't be built alongside classic
101 # swrast.
102 #
103 # Putting glvnd here is arbitrary, but we want it in one of the builds
104 # for coverage.
105 meson-swr-glvnd:
106 extends: .meson-build
107 variables:
108 UNWIND: "true"
109 DRI_LOADERS: >
110 -D glvnd=true
111 -D egl=true
112 GALLIUM_ST: >
113 -D dri3=true
114 -D gallium-vdpau=false
115 -D gallium-xvmc=false
116 -D gallium-omx=disabled
117 -D gallium-va=false
118 -D gallium-xa=false
119 -D gallium-nine=true
120 -D gallium-opencl=disabled
121 -D osmesa=gallium
122 GALLIUM_DRIVERS: "swr,swrast,iris"
123 LLVM_VERSION: "6.0"
124
125 meson-clang:
126 extends: .meson-build
127 variables:
128 UNWIND: "true"
129 DRI_DRIVERS: "auto"
130 GALLIUM_DRIVERS: "auto"
131 VULKAN_DRIVERS: intel,amd,freedreno
132 CC: "ccache clang-8"
133 CXX: "ccache clang++-8"
134 before_script:
135 - export CCACHE_BASEDIR="$PWD" CCACHE_DIR="$PWD/ccache"
136 - ccache --zero-stats --show-stats || true
137 # clang++ breaks if it picks up the GCC 8 directory without libstdc++.so
138 - apt-get remove -y libgcc-8-dev
139
140 scons-swr:
141 extends: .scons-build
142 variables:
143 SCONS_TARGET: "swr=1"
144 SCONS_CHECK_COMMAND: "true"
145 LLVM_VERSION: "6.0"
146
147 scons-win64:
148 extends: .scons-build
149 variables:
150 SCONS_TARGET: platform=windows machine=x86_64
151 SCONS_CHECK_COMMAND: "true"
152
153 meson-main:
154 extends: .meson-build
155 variables:
156 UNWIND: "true"
157 DRI_LOADERS: >
158 -D glx=dri
159 -D gbm=true
160 -D egl=true
161 -D platforms=x11,wayland,drm,surfaceless
162 -D osmesa=classic
163 DRI_DRIVERS: "i915,i965,r100,r200,swrast,nouveau"
164 GALLIUM_ST: >
165 -D dri3=true
166 -D gallium-extra-hud=true
167 -D gallium-vdpau=true
168 -D gallium-xvmc=true
169 -D gallium-omx=bellagio
170 -D gallium-va=true
171 -D gallium-xa=true
172 -D gallium-nine=false
173 -D gallium-opencl=disabled
174 GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,svga,v3d,vc4,virgl,etnaviv,panfrost,lima"
175 LLVM_VERSION: "7"
176 EXTRA_OPTION: >
177 -D tools=all
178
179 meson-clover:
180 extends: .meson-build
181 variables:
182 UNWIND: "true"
183 DRI_LOADERS: >
184 -D glx=disabled
185 -D egl=false
186 -D gbm=false
187 GALLIUM_ST: >
188 -D dri3=false
189 -D gallium-vdpau=false
190 -D gallium-xvmc=false
191 -D gallium-omx=disabled
192 -D gallium-va=false
193 -D gallium-xa=false
194 -D gallium-nine=false
195 -D gallium-opencl=icd
196 script:
197 - export GALLIUM_DRIVERS="r600,radeonsi"
198 - .gitlab-ci/meson-build.sh
199 - LLVM_VERSION=7 .gitlab-ci/meson-build.sh
200 - export GALLIUM_DRIVERS="i915,r600"
201 - LLVM_VERSION=3.9 .gitlab-ci/meson-build.sh
202 - LLVM_VERSION=4.0 .gitlab-ci/meson-build.sh
203 - LLVM_VERSION=5.0 .gitlab-ci/meson-build.sh
204 - LLVM_VERSION=6.0 .gitlab-ci/meson-build.sh
205
206 meson-vulkan:
207 extends: .meson-build
208 variables:
209 UNWIND: "false"
210 DRI_LOADERS: >
211 -D glx=disabled
212 -D gbm=false
213 -D egl=false
214 -D platforms=x11,wayland,drm
215 -D osmesa=none
216 GALLIUM_ST: >
217 -D dri3=true
218 -D gallium-vdpau=false
219 -D gallium-xvmc=false
220 -D gallium-omx=disabled
221 -D gallium-va=false
222 -D gallium-xa=false
223 -D gallium-nine=false
224 -D gallium-opencl=disabled
225 VULKAN_DRIVERS: intel,amd,freedreno
226 LLVM_VERSION: "7"
227 EXTRA_OPTION: >
228 -D vulkan-overlay-layer=true
229
230 scons-nollvm:
231 extends: .scons-build
232 variables:
233 SCONS_TARGET: "llvm=0"
234 SCONS_CHECK_COMMAND: "scons llvm=0 check"
235
236 scons-llvm:
237 extends: .scons-build
238 variables:
239 SCONS_TARGET: "llvm=1"
240 SCONS_CHECK_COMMAND: "scons llvm=1 check"
241 LLVM_VERSION: "3.4"
242 # LLVM 3.4 packages were built with an old libstdc++ ABI
243 CXX: "g++ -D_GLIBCXX_USE_CXX11_ABI=0"