drisw: Fix shared memory leak on drawable resize
[mesa.git] / .gitlab-ci / debian-install.sh
1 #!/bin/bash
2
3 set -e
4 set -o xtrace
5
6 export DEBIAN_FRONTEND=noninteractive
7
8 CROSS_ARCHITECTURES="armhf arm64 i386"
9 for arch in $CROSS_ARCHITECTURES; do
10 dpkg --add-architecture $arch
11 done
12
13 apt-get install -y \
14 ca-certificates \
15 wget \
16 unzip
17
18 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
19 echo 'deb https://deb.debian.org/debian buster-backports main' >/etc/apt/sources.list.d/backports.list
20
21 apt-get update
22
23 # Use newer packages from backports by default
24 cat >/etc/apt/preferences <<EOF
25 Package: *
26 Pin: release a=buster-backports
27 Pin-Priority: 500
28 EOF
29
30 apt-get dist-upgrade -y
31
32 apt-get install -y --no-remove \
33 llvm-6.0-dev \
34 libclang-6.0-dev \
35 llvm-7-dev \
36 libclang-7-dev \
37 llvm-8-dev \
38 libclang-8-dev \
39 g++ \
40 clang-8 \
41 git \
42 bzip2 \
43 zlib1g-dev \
44 pkg-config \
45 libxrender-dev \
46 libxdamage-dev \
47 libxxf86vm-dev \
48 gcc \
49 git \
50 libepoxy-dev \
51 libegl1-mesa-dev \
52 libgbm-dev \
53 libclc-dev \
54 libxvmc-dev \
55 libomxil-bellagio-dev \
56 xz-utils \
57 libexpat1-dev \
58 libx11-xcb-dev \
59 libelf-dev \
60 libunwind-dev \
61 libglvnd-dev \
62 libgtk-3-dev \
63 libpng-dev \
64 libgbm-dev \
65 libgles2-mesa-dev \
66 python-mako \
67 python3-mako \
68 bison \
69 flex \
70 gettext \
71 cmake \
72 meson \
73 scons
74
75 # Cross-build Mesa deps
76 for arch in $CROSS_ARCHITECTURES; do
77 apt-get install -y --no-remove \
78 libdrm-dev:${arch} \
79 libexpat1-dev:${arch} \
80 libelf-dev:${arch} \
81 crossbuild-essential-${arch}
82 done
83
84 # for 64bit windows cross-builds
85 apt-get install -y --no-remove mingw-w64
86
87 # for the vulkan overlay layer
88 wget https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-linux-Release.zip
89 unzip glslang-master-linux-Release.zip bin/glslangValidator
90 install -m755 bin/glslangValidator /usr/local/bin/
91 rm bin/glslangValidator glslang-master-linux-Release.zip
92
93
94 # dependencies where we want a specific version
95 export XORG_RELEASES=https://xorg.freedesktop.org/releases/individual
96 export XCB_RELEASES=https://xcb.freedesktop.org/dist
97 export WAYLAND_RELEASES=https://wayland.freedesktop.org/releases
98
99 export XORGMACROS_VERSION=util-macros-1.19.0
100 export GLPROTO_VERSION=glproto-1.4.17
101 export DRI2PROTO_VERSION=dri2proto-2.8
102 export LIBPCIACCESS_VERSION=libpciaccess-0.13.4
103 export LIBDRM_VERSION=libdrm-2.4.99
104 export XCBPROTO_VERSION=xcb-proto-1.13
105 export RANDRPROTO_VERSION=randrproto-1.5.0
106 export LIBXRANDR_VERSION=libXrandr-1.5.0
107 export LIBXCB_VERSION=libxcb-1.13
108 export LIBXSHMFENCE_VERSION=libxshmfence-1.3
109 export LIBVDPAU_VERSION=libvdpau-1.1
110 export LIBVA_VERSION=libva-1.7.0
111 export LIBWAYLAND_VERSION=wayland-1.15.0
112 export WAYLAND_PROTOCOLS_VERSION=wayland-protocols-1.12
113
114 wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
115 tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
116 cd $XORGMACROS_VERSION; ./configure; make install; cd ..
117 rm -rf $XORGMACROS_VERSION
118
119 wget $XORG_RELEASES/proto/$GLPROTO_VERSION.tar.bz2
120 tar -xvf $GLPROTO_VERSION.tar.bz2 && rm $GLPROTO_VERSION.tar.bz2
121 cd $GLPROTO_VERSION; ./configure; make install; cd ..
122 rm -rf $GLPROTO_VERSION
123
124 wget $XORG_RELEASES/proto/$DRI2PROTO_VERSION.tar.bz2
125 tar -xvf $DRI2PROTO_VERSION.tar.bz2 && rm $DRI2PROTO_VERSION.tar.bz2
126 cd $DRI2PROTO_VERSION; ./configure; make install; cd ..
127 rm -rf $DRI2PROTO_VERSION
128
129 wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
130 tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
131 cd $XCBPROTO_VERSION; ./configure; make install; cd ..
132 rm -rf $XCBPROTO_VERSION
133
134 wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
135 tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
136 cd $LIBXCB_VERSION; ./configure; make install; cd ..
137 rm -rf $LIBXCB_VERSION
138
139 wget $XORG_RELEASES/lib/$LIBPCIACCESS_VERSION.tar.bz2
140 tar -xvf $LIBPCIACCESS_VERSION.tar.bz2 && rm $LIBPCIACCESS_VERSION.tar.bz2
141 cd $LIBPCIACCESS_VERSION; ./configure; make install; cd ..
142 rm -rf $LIBPCIACCESS_VERSION
143
144 wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.bz2
145 tar -xvf $LIBDRM_VERSION.tar.bz2 && rm $LIBDRM_VERSION.tar.bz2
146 cd $LIBDRM_VERSION; ./configure --enable-vc4 --enable-freedreno --enable-etnaviv-experimental-api; make install; cd ..
147 rm -rf $LIBDRM_VERSION
148
149 wget $XORG_RELEASES/proto/$RANDRPROTO_VERSION.tar.bz2
150 tar -xvf $RANDRPROTO_VERSION.tar.bz2 && rm $RANDRPROTO_VERSION.tar.bz2
151 cd $RANDRPROTO_VERSION; ./configure; make install; cd ..
152 rm -rf $RANDRPROTO_VERSION
153
154 wget $XORG_RELEASES/lib/$LIBXRANDR_VERSION.tar.bz2
155 tar -xvf $LIBXRANDR_VERSION.tar.bz2 && rm $LIBXRANDR_VERSION.tar.bz2
156 cd $LIBXRANDR_VERSION; ./configure; make install; cd ..
157 rm -rf $LIBXRANDR_VERSION
158
159 wget $XORG_RELEASES/lib/$LIBXSHMFENCE_VERSION.tar.bz2
160 tar -xvf $LIBXSHMFENCE_VERSION.tar.bz2 && rm $LIBXSHMFENCE_VERSION.tar.bz2
161 cd $LIBXSHMFENCE_VERSION; ./configure; make install; cd ..
162 rm -rf $LIBXSHMFENCE_VERSION
163
164 wget https://people.freedesktop.org/~aplattner/vdpau/$LIBVDPAU_VERSION.tar.bz2
165 tar -xvf $LIBVDPAU_VERSION.tar.bz2 && rm $LIBVDPAU_VERSION.tar.bz2
166 cd $LIBVDPAU_VERSION; ./configure; make install; cd ..
167 rm -rf $LIBVDPAU_VERSION
168
169 wget https://www.freedesktop.org/software/vaapi/releases/libva/$LIBVA_VERSION.tar.bz2
170 tar -xvf $LIBVA_VERSION.tar.bz2 && rm $LIBVA_VERSION.tar.bz2
171 cd $LIBVA_VERSION; ./configure --disable-wayland --disable-dummy-driver; make install; cd ..
172 rm -rf $LIBVA_VERSION
173
174 wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
175 tar -xvf $LIBWAYLAND_VERSION.tar.xz && rm $LIBWAYLAND_VERSION.tar.xz
176 cd $LIBWAYLAND_VERSION; ./configure --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation; make install; cd ..
177 rm -rf $LIBWAYLAND_VERSION
178
179 wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
180 tar -xvf $WAYLAND_PROTOCOLS_VERSION.tar.xz && rm $WAYLAND_PROTOCOLS_VERSION.tar.xz
181 cd $WAYLAND_PROTOCOLS_VERSION; ./configure; make install; cd ..
182 rm -rf $WAYLAND_PROTOCOLS_VERSION
183
184 pushd /usr/local
185 git clone https://gitlab.freedesktop.org/mesa/shader-db.git --depth 1
186 rm -rf shader-db/.git
187 cd shader-db
188 make
189 popd
190
191 # Use ccache to speed up builds
192 apt-get install -y --no-remove ccache
193
194 # We need xmllint to validate the XML files in Mesa
195 apt-get install -y --no-remove libxml2-utils
196
197
198 # Generate cross build files for Meson
199 for arch in $CROSS_ARCHITECTURES; do
200 cross_file="/cross_file-$arch.txt"
201 /usr/share/meson/debcrossgen --arch "$arch" -o "$cross_file"
202 # Work around a bug in debcrossgen that should be fixed in the next release
203 if [ "$arch" = "i386" ]; then
204 sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" "$cross_file"
205 fi
206 done
207
208
209 ############### Build dEQP
210 git config --global user.email "mesa@example.com"
211 git config --global user.name "Mesa CI"
212 # XXX: Use --depth 1 once we can drop the cherry-picks.
213 git clone \
214 https://github.com/KhronosGroup/VK-GL-CTS.git \
215 -b opengl-es-cts-3.2.5.1 \
216 /VK-GL-CTS
217 cd /VK-GL-CTS
218 # Fix surfaceless build
219 git cherry-pick -x 22f41e5e321c6dcd8569c4dad91bce89f06b3670
220 git cherry-pick -x 1daa8dff73161ea60ead965bd6c9f2a0a2165648
221
222 # surfaceless links against libkms and such despite not using it.
223 sed -i '/gbm/d' targets/surfaceless/surfaceless.cmake
224 sed -i '/libkms/d' targets/surfaceless/surfaceless.cmake
225 sed -i '/libgbm/d' targets/surfaceless/surfaceless.cmake
226
227 python3 external/fetch_sources.py
228
229 mkdir -p /deqp
230 cd /deqp
231 cmake -G Ninja \
232 -DDEQP_TARGET=surfaceless \
233 -DCMAKE_BUILD_TYPE=Release \
234 /VK-GL-CTS
235 ninja
236
237 # Copy out the mustpass lists we want from a bunch of other junk.
238 mkdir /deqp/mustpass
239 for gles in gles2 gles3 gles31; do
240 cp \
241 /deqp/external/openglcts/modules/gl_cts/data/mustpass/gles/aosp_mustpass/3.2.5.x/$gles-master.txt \
242 /deqp/mustpass/$gles-master.txt
243 done
244
245 # Remove the rest of the build products that we don't need.
246 rm -rf /deqp/external
247 rm -rf /deqp/modules/internal
248 rm -rf /deqp/executor
249 rm -rf /deqp/execserver
250 rm -rf /deqp/modules/egl
251 rm -rf /deqp/framework
252 du -sh *
253 rm -rf /VK-GL-CTS
254
255 ############### Uninstall the build software
256
257 apt-get purge -y \
258 wget \
259 unzip \
260 cmake \
261 git \
262 libgles2-mesa-dev \
263 libgbm-dev
264
265 apt-get autoremove -y --purge