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