b2220a61faa899fe8e8f08a1ac9819506ad528dd
[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 # Ephemeral packages (installed for this script and removed again at the end)
9 STABLE_EPHEMERAL=" \
10 autoconf \
11 automake \
12 autotools-dev \
13 bzip2 \
14 cmake \
15 gnupg \
16 libgbm-dev \
17 libtool \
18 make \
19 unzip \
20 wget \
21 "
22
23 # We need multiarch for Wine
24 dpkg --add-architecture i386
25 apt-get update
26
27 apt-get install -y --no-remove \
28 $STABLE_EPHEMERAL \
29 wine-development \
30 wine32-development
31
32 apt-get install -y --no-remove -t buster-backports \
33 llvm-8-dev
34
35
36 . .gitlab-ci/container/container_pre_build.sh
37
38
39 # Debian's pkg-config wrapers for mingw are broken, and there's no sign that
40 # they're going to be fixed, so we'll just have to fix it ourselves
41 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930492
42 cat >/usr/local/bin/x86_64-w64-mingw32-pkg-config <<EOF
43 #!/bin/sh
44
45 PKG_CONFIG_LIBDIR=/usr/x86_64-w64-mingw32/lib/pkgconfig pkg-config \$@
46 EOF
47 chmod +x /usr/local/bin/x86_64-w64-mingw32-pkg-config
48
49
50 # dependencies where we want a specific version
51 export XORG_RELEASES=https://xorg.freedesktop.org/releases/individual
52 export XCB_RELEASES=https://xcb.freedesktop.org/dist
53 export WAYLAND_RELEASES=https://wayland.freedesktop.org/releases
54
55 export XORGMACROS_VERSION=util-macros-1.19.0
56 export LIBDRM_VERSION=libdrm-2.4.102
57 export XCBPROTO_VERSION=xcb-proto-1.13
58 export LIBXCB_VERSION=libxcb-1.13
59 export LIBWAYLAND_VERSION=wayland-1.15.0
60 export WAYLAND_PROTOCOLS_VERSION=wayland-protocols-1.12
61
62 wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
63 tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
64 cd $XORGMACROS_VERSION; ./configure; make install; cd ..
65 rm -rf $XORGMACROS_VERSION
66
67 wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
68 tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
69 cd $XCBPROTO_VERSION; ./configure; make install; cd ..
70 rm -rf $XCBPROTO_VERSION
71
72 wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
73 tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
74 cd $LIBXCB_VERSION; ./configure; make install; cd ..
75 rm -rf $LIBXCB_VERSION
76
77 wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.xz
78 tar -xvf $LIBDRM_VERSION.tar.xz && rm $LIBDRM_VERSION.tar.xz
79 cd $LIBDRM_VERSION
80 meson build -D vc4=true -D freedreno=true -D etnaviv=true -D libdir=lib/x86_64-linux-gnu; ninja -C build install
81 cd ..
82 rm -rf $LIBDRM_VERSION
83
84 wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
85 tar -xvf $LIBWAYLAND_VERSION.tar.xz && rm $LIBWAYLAND_VERSION.tar.xz
86 cd $LIBWAYLAND_VERSION; ./configure --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation; make install; cd ..
87 rm -rf $LIBWAYLAND_VERSION
88
89 wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
90 tar -xvf $WAYLAND_PROTOCOLS_VERSION.tar.xz && rm $WAYLAND_PROTOCOLS_VERSION.tar.xz
91 cd $WAYLAND_PROTOCOLS_VERSION; ./configure; make install; cd ..
92 rm -rf $WAYLAND_PROTOCOLS_VERSION
93
94
95 # The version of libglvnd-dev in debian is too old
96 # Check this page to see when this local compilation can be dropped in favour of the package:
97 # https://packages.debian.org/libglvnd-dev
98 GLVND_VERSION=1.2.0
99 wget https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v$GLVND_VERSION/libglvnd-v$GLVND_VERSION.tar.gz
100 tar -xvf libglvnd-v$GLVND_VERSION.tar.gz && rm libglvnd-v$GLVND_VERSION.tar.gz
101 pushd libglvnd-v$GLVND_VERSION; ./autogen.sh; ./configure; make install; popd
102 rm -rf libglvnd-v$GLVND_VERSION
103
104
105 pushd /usr/local
106 git clone https://gitlab.freedesktop.org/mesa/shader-db.git --depth 1
107 rm -rf shader-db/.git
108 cd shader-db
109 make
110 popd
111
112
113 ############### Uninstall the build software
114
115 apt-get purge -y \
116 $STABLE_EPHEMERAL
117
118 . .gitlab-ci/container/container_post_build.sh