gitlab-ci: Install WINE from Debian testing
[mesa.git] / .gitlab-ci / container / x86_build.sh
1 #!/bin/bash
2
3 set -e
4 set -o xtrace
5
6 export DEBIAN_FRONTEND=noninteractive
7
8 CROSS_ARCHITECTURES="i386 ppc64el s390x"
9 for arch in $CROSS_ARCHITECTURES; do
10 dpkg --add-architecture $arch
11 done
12
13 apt-get install -y \
14 ca-certificates \
15 gnupg \
16 unzip \
17 wget
18
19 # Upstream LLVM package repository
20 apt-key add .gitlab-ci/container/llvm-snapshot.gpg.key
21 echo "deb https://apt.llvm.org/buster/ llvm-toolchain-buster-9 main" >/etc/apt/sources.list.d/llvm9.list
22
23 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
24 echo 'deb https://deb.debian.org/debian buster-backports main' >/etc/apt/sources.list.d/backports.list
25 echo 'deb https://deb.debian.org/debian testing main' >/etc/apt/sources.list.d/testing.list
26
27 apt-get update
28
29 # Don't use newer packages from testing by default
30 cat >/etc/apt/preferences <<EOF
31 Package: *
32 Pin: release a=testing
33 Pin-Priority: 100
34 EOF
35
36 apt-get dist-upgrade -y
37
38 apt-get install -y --no-remove \
39 autoconf \
40 automake \
41 autotools-dev \
42 bison \
43 ccache \
44 clang-9 \
45 cmake \
46 flex \
47 g++ \
48 gcc \
49 gettext \
50 git \
51 libclang-6.0-dev \
52 libclang-7-dev \
53 libclang-9-dev \
54 libclc-dev \
55 libelf-dev \
56 libepoxy-dev \
57 libexpat1-dev \
58 libgbm-dev \
59 libgtk-3-dev \
60 libomxil-bellagio-dev \
61 libpciaccess-dev \
62 libtool \
63 libunwind-dev \
64 libva-dev \
65 libvdpau-dev \
66 libvulkan-dev \
67 libvulkan-dev:ppc64el \
68 libx11-dev \
69 libx11-xcb-dev \
70 libxdamage-dev \
71 libxext-dev \
72 libxml2-utils \
73 libxrandr-dev \
74 libxrender-dev \
75 libxshmfence-dev \
76 libxvmc-dev \
77 libxxf86vm-dev \
78 llvm-6.0-dev \
79 llvm-7-dev \
80 llvm-9-dev \
81 meson \
82 pkg-config \
83 python-mako \
84 python3-mako \
85 python3-pil \
86 python3-requests \
87 qemu-user \
88 scons \
89 x11proto-dri2-dev \
90 x11proto-gl-dev \
91 x11proto-randr-dev \
92 xz-utils \
93 zlib1g-dev
94
95 apt-get install -y --no-remove -t buster-backports \
96 libclang-8-dev
97
98 # Cross-build Mesa deps
99 for arch in $CROSS_ARCHITECTURES; do
100 apt-get install -y --no-remove \
101 crossbuild-essential-${arch} \
102 libdrm-dev:${arch} \
103 libelf-dev:${arch} \
104 libexpat1-dev:${arch} \
105 libffi-dev:${arch} \
106 libstdc++6:${arch} \
107 libtinfo-dev:${arch}
108
109 apt-get install -y --no-remove -t buster-backports \
110 libllvm8:${arch}
111
112 if [ "$arch" == "i386" ]; then
113 # libpciaccess-dev is only needed for Intel.
114 apt-get install -y --no-remove \
115 libpciaccess-dev:${arch}
116 fi
117
118 mkdir /var/cache/apt/archives/${arch}
119 # Download llvm-* packages, but don't install them yet, since they can
120 # only be installed for one architecture at a time
121 apt-get install -o Dir::Cache::archives=/var/cache/apt/archives/$arch --download-only \
122 -y --no-remove -t buster-backports \
123 llvm-8-dev:${arch}
124 done
125
126 apt-get install -y --no-remove -t buster-backports \
127 llvm-8-dev \
128
129 # for 64bit windows cross-builds
130 apt-get install -y --no-remove \
131 libz-mingw-w64-dev \
132 mingw-w64
133
134
135 # Install packages we need from Debian testing last, to avoid pulling in more
136
137 # Need to allow removing libgcc1 for these
138 apt-get install -y -t testing \
139 libstdc++6:i386 \
140 libstdc++6:ppc64el \
141 libstdc++6:s390x
142
143 apt-get install -y --no-remove -t testing \
144 wine \
145 wine32 \
146 wine64
147
148
149 . .gitlab-ci/container/container_pre_build.sh
150
151
152 # Debian's pkg-config wrapers for mingw are broken, and there's no sign that
153 # they're going to be fixed, so we'll just have to fix it ourselves
154 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930492
155 cat >/usr/local/bin/x86_64-w64-mingw32-pkg-config <<EOF
156 #!/bin/sh
157
158 PKG_CONFIG_LIBDIR=/usr/x86_64-w64-mingw32/lib/pkgconfig pkg-config \$@
159 EOF
160 chmod +x /usr/local/bin/x86_64-w64-mingw32-pkg-config
161
162
163 # Generate cross build files for Meson
164 for arch in $CROSS_ARCHITECTURES; do
165 cross_file="/cross_file-$arch.txt"
166 /usr/share/meson/debcrossgen --arch "$arch" -o "$cross_file"
167 # Explicitly set ccache path for cross compilers
168 sed -i "s|/usr/bin/\([^-]*\)-linux-gnu\([^-]*\)-g|/usr/lib/ccache/\\1-linux-gnu\\2-g|g" "$cross_file"
169 if [ "$arch" = "i386" ]; then
170 # Work around a bug in debcrossgen that should be fixed in the next release
171 sed -i "s|cpu_family = 'i686'|cpu_family = 'x86'|g" "$cross_file"
172 fi
173
174 # Rely on qemu-user being configured in binfmt_misc on the host
175 sed -i -e '/\[properties\]/a\' -e "needs_exe_wrapper = False" "$cross_file"
176 done
177
178
179 # for the vulkan overlay layer
180 wget https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-linux-Release.zip
181 unzip glslang-master-linux-Release.zip bin/glslangValidator
182 install -m755 bin/glslangValidator /usr/local/bin/
183 rm bin/glslangValidator glslang-master-linux-Release.zip
184
185
186 # dependencies where we want a specific version
187 export XORG_RELEASES=https://xorg.freedesktop.org/releases/individual
188 export XCB_RELEASES=https://xcb.freedesktop.org/dist
189 export WAYLAND_RELEASES=https://wayland.freedesktop.org/releases
190
191 export XORGMACROS_VERSION=util-macros-1.19.0
192 export LIBDRM_VERSION=libdrm-2.4.100
193 export XCBPROTO_VERSION=xcb-proto-1.13
194 export LIBXCB_VERSION=libxcb-1.13
195 export LIBWAYLAND_VERSION=wayland-1.15.0
196 export WAYLAND_PROTOCOLS_VERSION=wayland-protocols-1.12
197
198 wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
199 tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
200 cd $XORGMACROS_VERSION; ./configure; make install; cd ..
201 rm -rf $XORGMACROS_VERSION
202
203 wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
204 tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
205 cd $XCBPROTO_VERSION; ./configure; make install; cd ..
206 rm -rf $XCBPROTO_VERSION
207
208 wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
209 tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
210 cd $LIBXCB_VERSION; ./configure; make install; cd ..
211 rm -rf $LIBXCB_VERSION
212
213 wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.bz2
214 tar -xvf $LIBDRM_VERSION.tar.bz2 && rm $LIBDRM_VERSION.tar.bz2
215 cd $LIBDRM_VERSION
216 meson build -D vc4=true -D freedreno=true -D etnaviv=true -D libdir=lib/x86_64-linux-gnu; ninja -C build install
217 rm -rf build; meson --cross-file=/cross_file-ppc64el.txt build -D libdir=lib/powerpc64le-linux-gnu; ninja -C build install
218 rm -rf build; meson --cross-file=/cross_file-i386.txt build -D libdir=lib/i386-linux-gnu; ninja -C build install
219 cd ..
220 rm -rf $LIBDRM_VERSION
221
222 wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
223 tar -xvf $LIBWAYLAND_VERSION.tar.xz && rm $LIBWAYLAND_VERSION.tar.xz
224 cd $LIBWAYLAND_VERSION; ./configure --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation; make install; cd ..
225 rm -rf $LIBWAYLAND_VERSION
226
227 wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
228 tar -xvf $WAYLAND_PROTOCOLS_VERSION.tar.xz && rm $WAYLAND_PROTOCOLS_VERSION.tar.xz
229 cd $WAYLAND_PROTOCOLS_VERSION; ./configure; make install; cd ..
230 rm -rf $WAYLAND_PROTOCOLS_VERSION
231
232
233 # The version of libglvnd-dev in debian is too old
234 # Check this page to see when this local compilation can be dropped in favour of the package:
235 # https://packages.debian.org/libglvnd-dev
236 GLVND_VERSION=1.2.0
237 wget https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v$GLVND_VERSION/libglvnd-v$GLVND_VERSION.tar.gz
238 tar -xvf libglvnd-v$GLVND_VERSION.tar.gz && rm libglvnd-v$GLVND_VERSION.tar.gz
239 pushd libglvnd-v$GLVND_VERSION; ./autogen.sh; ./configure; make install; popd
240 rm -rf libglvnd-v$GLVND_VERSION
241
242
243 pushd /usr/local
244 git clone https://gitlab.freedesktop.org/mesa/shader-db.git --depth 1
245 rm -rf shader-db/.git
246 cd shader-db
247 make
248 popd
249
250
251 ############### Uninstall the build software
252
253 apt-get purge -y \
254 autoconf \
255 automake \
256 autotools-dev \
257 cmake \
258 git \
259 gnupg \
260 libgbm-dev \
261 libtool \
262 unzip \
263 wget
264
265 . .gitlab-ci/container/container_post_build.sh