st/mesa: whitespace fixes in st_texture.h
[mesa.git] / .gitlab-ci / Dockerfile.ubuntu
1 FROM ubuntu:bionic
2
3 RUN apt-get update
4 RUN apt-get upgrade -y
5 RUN apt-get install -y \
6 curl \
7 wget \
8 gnupg \
9 software-properties-common
10
11 RUN curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
12 RUN add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main"
13
14 RUN apt-get update
15 RUN apt-get install -y \
16 pkg-config \
17 libdrm-dev \
18 libpciaccess-dev \
19 libxrandr-dev \
20 libxdamage-dev \
21 libxfixes-dev \
22 libxshmfence-dev \
23 libxxf86vm-dev \
24 libvdpau-dev \
25 libva-dev \
26 llvm-3.9-dev \
27 libclang-3.9-dev \
28 llvm-4.0-dev \
29 libclang-4.0-dev \
30 llvm-5.0-dev \
31 llvm-6.0-dev \
32 llvm-7-dev \
33 clang-5.0 \
34 libclang-5.0-dev \
35 clang-6.0 \
36 libclang-6.0-dev \
37 clang-7 \
38 libclang-7-dev \
39 libclc-dev \
40 libxvmc-dev \
41 libomxil-bellagio-dev \
42 xz-utils \
43 libexpat1-dev \
44 libx11-xcb-dev \
45 x11proto-xf86vidmode-dev \
46 libelf-dev \
47 libunwind8-dev \
48 libglvnd-dev \
49 python2.7 \
50 python-pip \
51 python-setuptools \
52 python3.5 \
53 python3-pip \
54 python3-setuptools
55
56 RUN apt-get install -y \
57 libxcb-randr0
58
59 # autotools build deps
60 RUN apt-get install -y \
61 autoconf \
62 automake \
63 xutils-dev \
64 libtool \
65 bison \
66 flex \
67 gettext \
68 make
69
70 # dependencies where we want a specific version
71 ENV XORG_RELEASES https://xorg.freedesktop.org/releases/individual
72 ENV XCB_RELEASES https://xcb.freedesktop.org/dist
73 ENV WAYLAND_RELEASES https://wayland.freedesktop.org/releases
74
75 ENV XORGMACROS_VERSION util-macros-1.19.0
76 ENV GLPROTO_VERSION glproto-1.4.17
77 ENV DRI2PROTO_VERSION dri2proto-2.8
78 ENV LIBPCIACCESS_VERSION libpciaccess-0.13.4
79 ENV LIBDRM_VERSION libdrm-2.4.97
80 ENV XCBPROTO_VERSION xcb-proto-1.13
81 ENV RANDRPROTO_VERSION randrproto-1.3.0
82 ENV LIBXRANDR_VERSION libXrandr-1.3.0
83 ENV LIBXCB_VERSION libxcb-1.13
84 ENV LIBXSHMFENCE_VERSION libxshmfence-1.3
85 ENV LIBVDPAU_VERSION libvdpau-1.1
86 ENV LIBVA_VERSION libva-1.7.0
87 ENV LIBWAYLAND_VERSION wayland-1.15.0
88 ENV WAYLAND_PROTOCOLS_VERSION wayland-protocols-1.8
89
90 RUN wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
91 RUN tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
92 RUN (cd $XORGMACROS_VERSION && ./configure && make install) && rm -rf $XORGMACROS_VERSION
93
94 RUN wget $XORG_RELEASES/proto/$GLPROTO_VERSION.tar.bz2
95 RUN tar -xvf $GLPROTO_VERSION.tar.bz2 && rm $GLPROTO_VERSION.tar.bz2
96 RUN (cd $GLPROTO_VERSION && ./configure && make install) && rm -rf $GLPROTO_VERSION
97
98 RUN wget $XORG_RELEASES/proto/$DRI2PROTO_VERSION.tar.bz2
99 RUN tar -xvf $DRI2PROTO_VERSION.tar.bz2 && rm $DRI2PROTO_VERSION.tar.bz2
100 RUN (cd $DRI2PROTO_VERSION && ./configure && make install) && rm -rf $DRI2PROTO_VERSION
101
102 RUN wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
103 RUN tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
104 RUN (cd $XCBPROTO_VERSION && ./configure && make install) && rm -rf $XCBPROTO_VERSION
105
106 RUN wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
107 RUN tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
108 RUN (cd $LIBXCB_VERSION && ./configure && make install) && rm -rf $LIBXCB_VERSION
109
110 RUN wget $XORG_RELEASES/lib/$LIBPCIACCESS_VERSION.tar.bz2
111 RUN tar -xvf $LIBPCIACCESS_VERSION.tar.bz2 && rm $LIBPCIACCESS_VERSION.tar.bz2
112 RUN (cd $LIBPCIACCESS_VERSION && ./configure && make install) && rm -rf $LIBPCIACCESS_VERSION
113
114 RUN wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.bz2
115 RUN tar -xvf $LIBDRM_VERSION.tar.bz2 && rm $LIBDRM_VERSION.tar.bz2
116 RUN (cd $LIBDRM_VERSION && ./configure --enable-vc4 --enable-freedreno --enable-etnaviv-experimental-api && make install) && rm -rf $LIBDRM_VERSION
117
118 RUN wget $XORG_RELEASES/proto/$RANDRPROTO_VERSION.tar.bz2
119 RUN tar -xvf $RANDRPROTO_VERSION.tar.bz2 && rm $RANDRPROTO_VERSION.tar.bz2
120 RUN (cd $RANDRPROTO_VERSION && ./configure && make install) && rm -rf $RANDRPROTO_VERSION
121
122 RUN wget $XORG_RELEASES/lib/$LIBXRANDR_VERSION.tar.bz2
123 RUN tar -xvf $LIBXRANDR_VERSION.tar.bz2 && rm $LIBXRANDR_VERSION.tar.bz2
124 RUN (cd $LIBXRANDR_VERSION && ./configure && make install) && rm -rf $LIBXRANDR_VERSION
125
126 RUN wget $XORG_RELEASES/lib/$LIBXSHMFENCE_VERSION.tar.bz2
127 RUN tar -xvf $LIBXSHMFENCE_VERSION.tar.bz2 && rm $LIBXSHMFENCE_VERSION.tar.bz2
128 RUN (cd $LIBXSHMFENCE_VERSION && ./configure && make install) && rm -rf $LIBXSHMFENCE_VERSION
129
130 RUN wget https://people.freedesktop.org/~aplattner/vdpau/$LIBVDPAU_VERSION.tar.bz2
131 RUN tar -xvf $LIBVDPAU_VERSION.tar.bz2 && rm $LIBVDPAU_VERSION.tar.bz2
132 RUN (cd $LIBVDPAU_VERSION && ./configure && make install) && rm -rf $LIBVDPAU_VERSION
133
134 RUN wget https://www.freedesktop.org/software/vaapi/releases/libva/$LIBVA_VERSION.tar.bz2
135 RUN tar -xvf $LIBVA_VERSION.tar.bz2 && rm $LIBVA_VERSION.tar.bz2
136 RUN (cd $LIBVA_VERSION && ./configure --disable-wayland --disable-dummy-driver && make install) && rm -rf $LIBVA_VERSION
137
138 RUN wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
139 RUN tar -xvf $LIBWAYLAND_VERSION.tar.xz && rm $LIBWAYLAND_VERSION.tar.xz
140 RUN (cd $LIBWAYLAND_VERSION && ./configure --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation && make install) && rm -rf $LIBWAYLAND_VERSION
141
142 RUN wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
143 RUN tar -xvf $WAYLAND_PROTOCOLS_VERSION.tar.xz && rm $WAYLAND_PROTOCOLS_VERSION.tar.xz
144 RUN (cd $WAYLAND_PROTOCOLS_VERSION && ./configure && make install) && rm -rf $WAYLAND_PROTOCOLS_VERSION
145
146
147 RUN apt-get install -y unzip
148
149 # Meson requires ninja >= 1.6, but xenial has 1.3.x
150 RUN wget https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-linux.zip
151 RUN unzip ninja-linux.zip && rm ninja-linux.zip
152 RUN mv ninja /usr/bin/
153
154
155 RUN pip3 install 'meson>=0.49'
156 RUN pip2 install 'scons>=2.4'
157
158 RUN pip2 install mako
159 RUN pip3 install mako
160
161 # Use ccache to speed up builds
162 RUN apt-get install -y ccache
163
164 # We need xmllint to validate the XML files in Mesa
165 RUN apt-get install -y libxml2-utils
166
167 # Cleanup workdir
168 WORKDIR /