gitlab-ci: install distro's ninja
[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 ninja-build
56
57 RUN apt-get install -y \
58 libxcb-randr0
59
60 # autotools build deps
61 RUN apt-get install -y \
62 autoconf \
63 automake \
64 xutils-dev \
65 libtool \
66 bison \
67 flex \
68 gettext \
69 make
70
71 # dependencies where we want a specific version
72 ENV XORG_RELEASES https://xorg.freedesktop.org/releases/individual
73 ENV XCB_RELEASES https://xcb.freedesktop.org/dist
74 ENV WAYLAND_RELEASES https://wayland.freedesktop.org/releases
75
76 ENV XORGMACROS_VERSION util-macros-1.19.0
77 ENV GLPROTO_VERSION glproto-1.4.17
78 ENV DRI2PROTO_VERSION dri2proto-2.8
79 ENV LIBPCIACCESS_VERSION libpciaccess-0.13.4
80 ENV LIBDRM_VERSION libdrm-2.4.97
81 ENV XCBPROTO_VERSION xcb-proto-1.13
82 ENV RANDRPROTO_VERSION randrproto-1.3.0
83 ENV LIBXRANDR_VERSION libXrandr-1.3.0
84 ENV LIBXCB_VERSION libxcb-1.13
85 ENV LIBXSHMFENCE_VERSION libxshmfence-1.3
86 ENV LIBVDPAU_VERSION libvdpau-1.1
87 ENV LIBVA_VERSION libva-1.7.0
88 ENV LIBWAYLAND_VERSION wayland-1.15.0
89 ENV WAYLAND_PROTOCOLS_VERSION wayland-protocols-1.8
90
91 RUN wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
92 RUN tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
93 RUN (cd $XORGMACROS_VERSION && ./configure && make install) && rm -rf $XORGMACROS_VERSION
94
95 RUN wget $XORG_RELEASES/proto/$GLPROTO_VERSION.tar.bz2
96 RUN tar -xvf $GLPROTO_VERSION.tar.bz2 && rm $GLPROTO_VERSION.tar.bz2
97 RUN (cd $GLPROTO_VERSION && ./configure && make install) && rm -rf $GLPROTO_VERSION
98
99 RUN wget $XORG_RELEASES/proto/$DRI2PROTO_VERSION.tar.bz2
100 RUN tar -xvf $DRI2PROTO_VERSION.tar.bz2 && rm $DRI2PROTO_VERSION.tar.bz2
101 RUN (cd $DRI2PROTO_VERSION && ./configure && make install) && rm -rf $DRI2PROTO_VERSION
102
103 RUN wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
104 RUN tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
105 RUN (cd $XCBPROTO_VERSION && ./configure && make install) && rm -rf $XCBPROTO_VERSION
106
107 RUN wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
108 RUN tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
109 RUN (cd $LIBXCB_VERSION && ./configure && make install) && rm -rf $LIBXCB_VERSION
110
111 RUN wget $XORG_RELEASES/lib/$LIBPCIACCESS_VERSION.tar.bz2
112 RUN tar -xvf $LIBPCIACCESS_VERSION.tar.bz2 && rm $LIBPCIACCESS_VERSION.tar.bz2
113 RUN (cd $LIBPCIACCESS_VERSION && ./configure && make install) && rm -rf $LIBPCIACCESS_VERSION
114
115 RUN wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.bz2
116 RUN tar -xvf $LIBDRM_VERSION.tar.bz2 && rm $LIBDRM_VERSION.tar.bz2
117 RUN (cd $LIBDRM_VERSION && ./configure --enable-vc4 --enable-freedreno --enable-etnaviv-experimental-api && make install) && rm -rf $LIBDRM_VERSION
118
119 RUN wget $XORG_RELEASES/proto/$RANDRPROTO_VERSION.tar.bz2
120 RUN tar -xvf $RANDRPROTO_VERSION.tar.bz2 && rm $RANDRPROTO_VERSION.tar.bz2
121 RUN (cd $RANDRPROTO_VERSION && ./configure && make install) && rm -rf $RANDRPROTO_VERSION
122
123 RUN wget $XORG_RELEASES/lib/$LIBXRANDR_VERSION.tar.bz2
124 RUN tar -xvf $LIBXRANDR_VERSION.tar.bz2 && rm $LIBXRANDR_VERSION.tar.bz2
125 RUN (cd $LIBXRANDR_VERSION && ./configure && make install) && rm -rf $LIBXRANDR_VERSION
126
127 RUN wget $XORG_RELEASES/lib/$LIBXSHMFENCE_VERSION.tar.bz2
128 RUN tar -xvf $LIBXSHMFENCE_VERSION.tar.bz2 && rm $LIBXSHMFENCE_VERSION.tar.bz2
129 RUN (cd $LIBXSHMFENCE_VERSION && ./configure && make install) && rm -rf $LIBXSHMFENCE_VERSION
130
131 RUN wget https://people.freedesktop.org/~aplattner/vdpau/$LIBVDPAU_VERSION.tar.bz2
132 RUN tar -xvf $LIBVDPAU_VERSION.tar.bz2 && rm $LIBVDPAU_VERSION.tar.bz2
133 RUN (cd $LIBVDPAU_VERSION && ./configure && make install) && rm -rf $LIBVDPAU_VERSION
134
135 RUN wget https://www.freedesktop.org/software/vaapi/releases/libva/$LIBVA_VERSION.tar.bz2
136 RUN tar -xvf $LIBVA_VERSION.tar.bz2 && rm $LIBVA_VERSION.tar.bz2
137 RUN (cd $LIBVA_VERSION && ./configure --disable-wayland --disable-dummy-driver && make install) && rm -rf $LIBVA_VERSION
138
139 RUN wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
140 RUN tar -xvf $LIBWAYLAND_VERSION.tar.xz && rm $LIBWAYLAND_VERSION.tar.xz
141 RUN (cd $LIBWAYLAND_VERSION && ./configure --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation && make install) && rm -rf $LIBWAYLAND_VERSION
142
143 RUN wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
144 RUN tar -xvf $WAYLAND_PROTOCOLS_VERSION.tar.xz && rm $WAYLAND_PROTOCOLS_VERSION.tar.xz
145 RUN (cd $WAYLAND_PROTOCOLS_VERSION && ./configure && make install) && rm -rf $WAYLAND_PROTOCOLS_VERSION
146
147 RUN pip3 install 'meson>=0.49'
148 RUN pip2 install 'scons>=2.4'
149
150 RUN pip2 install mako
151 RUN pip3 install mako
152
153 # Use ccache to speed up builds
154 RUN apt-get install -y ccache
155
156 # We need xmllint to validate the XML files in Mesa
157 RUN apt-get install -y libxml2-utils
158
159 # Cleanup workdir
160 WORKDIR /