bf4c0bc366819f2ed5dc05520eb79fec6595cdaa
[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 libxshmfence-dev \
21 libvdpau-dev \
22 libva-dev \
23 llvm-7-dev \
24 xz-utils \
25 libexpat1-dev \
26 libx11-xcb-dev \
27 libelf-dev \
28 python2.7 \
29 python-pip \
30 python-setuptools \
31 python3.5 \
32 python3-pip \
33 python3-setuptools
34
35 RUN apt-get install -y \
36 libxcb-randr0
37
38 # autotools build deps
39 RUN apt-get install -y \
40 autoconf \
41 automake \
42 xutils-dev \
43 libtool \
44 bison \
45 flex \
46 gettext \
47 make
48
49 # dependencies where we want a specific version
50 ENV XORG_RELEASES https://xorg.freedesktop.org/releases/individual
51 ENV XCB_RELEASES https://xcb.freedesktop.org/dist
52 ENV WAYLAND_RELEASES https://wayland.freedesktop.org/releases
53
54 ENV XORGMACROS_VERSION util-macros-1.19.0
55 ENV GLPROTO_VERSION glproto-1.4.17
56 ENV DRI2PROTO_VERSION dri2proto-2.8
57 ENV LIBPCIACCESS_VERSION libpciaccess-0.13.4
58 ENV LIBDRM_VERSION libdrm-2.4.97
59 ENV XCBPROTO_VERSION xcb-proto-1.13
60 ENV RANDRPROTO_VERSION randrproto-1.3.0
61 ENV LIBXRANDR_VERSION libXrandr-1.3.0
62 ENV LIBXCB_VERSION libxcb-1.13
63 ENV LIBXSHMFENCE_VERSION libxshmfence-1.3
64 ENV LIBVDPAU_VERSION libvdpau-1.1
65 ENV LIBVA_VERSION libva-1.7.0
66 ENV LIBWAYLAND_VERSION wayland-1.15.0
67 ENV WAYLAND_PROTOCOLS_VERSION wayland-protocols-1.8
68
69 RUN wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
70 RUN tar -xvf $XORGMACROS_VERSION.tar.bz2 && rm $XORGMACROS_VERSION.tar.bz2
71 RUN (cd $XORGMACROS_VERSION && ./configure && make install) && rm -rf $XORGMACROS_VERSION
72
73 RUN wget $XORG_RELEASES/proto/$GLPROTO_VERSION.tar.bz2
74 RUN tar -xvf $GLPROTO_VERSION.tar.bz2 && rm $GLPROTO_VERSION.tar.bz2
75 RUN (cd $GLPROTO_VERSION && ./configure && make install) && rm -rf $GLPROTO_VERSION
76
77 RUN wget $XORG_RELEASES/proto/$DRI2PROTO_VERSION.tar.bz2
78 RUN tar -xvf $DRI2PROTO_VERSION.tar.bz2 && rm $DRI2PROTO_VERSION.tar.bz2
79 RUN (cd $DRI2PROTO_VERSION && ./configure && make install) && rm -rf $DRI2PROTO_VERSION
80
81 RUN wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
82 RUN tar -xvf $XCBPROTO_VERSION.tar.bz2 && rm $XCBPROTO_VERSION.tar.bz2
83 RUN (cd $XCBPROTO_VERSION && ./configure && make install) && rm -rf $XCBPROTO_VERSION
84
85 RUN wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
86 RUN tar -xvf $LIBXCB_VERSION.tar.bz2 && rm $LIBXCB_VERSION.tar.bz2
87 RUN (cd $LIBXCB_VERSION && ./configure && make install) && rm -rf $LIBXCB_VERSION
88
89 RUN wget $XORG_RELEASES/lib/$LIBPCIACCESS_VERSION.tar.bz2
90 RUN tar -xvf $LIBPCIACCESS_VERSION.tar.bz2 && rm $LIBPCIACCESS_VERSION.tar.bz2
91 RUN (cd $LIBPCIACCESS_VERSION && ./configure && make install) && rm -rf $LIBPCIACCESS_VERSION
92
93 RUN wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.bz2
94 RUN tar -xvf $LIBDRM_VERSION.tar.bz2 && rm $LIBDRM_VERSION.tar.bz2
95 RUN (cd $LIBDRM_VERSION && ./configure --enable-vc4 --enable-freedreno --enable-etnaviv-experimental-api && make install) && rm -rf $LIBDRM_VERSION
96
97 RUN wget $XORG_RELEASES/proto/$RANDRPROTO_VERSION.tar.bz2
98 RUN tar -xvf $RANDRPROTO_VERSION.tar.bz2 && rm $RANDRPROTO_VERSION.tar.bz2
99 RUN (cd $RANDRPROTO_VERSION && ./configure && make install) && rm -rf $RANDRPROTO_VERSION
100
101 RUN wget $XORG_RELEASES/lib/$LIBXRANDR_VERSION.tar.bz2
102 RUN tar -xvf $LIBXRANDR_VERSION.tar.bz2 && rm $LIBXRANDR_VERSION.tar.bz2
103 RUN (cd $LIBXRANDR_VERSION && ./configure && make install) && rm -rf $LIBXRANDR_VERSION
104
105 RUN wget $XORG_RELEASES/lib/$LIBXSHMFENCE_VERSION.tar.bz2
106 RUN tar -xvf $LIBXSHMFENCE_VERSION.tar.bz2 && rm $LIBXSHMFENCE_VERSION.tar.bz2
107 RUN (cd $LIBXSHMFENCE_VERSION && ./configure && make install) && rm -rf $LIBXSHMFENCE_VERSION
108
109 RUN wget https://people.freedesktop.org/~aplattner/vdpau/$LIBVDPAU_VERSION.tar.bz2
110 RUN tar -xvf $LIBVDPAU_VERSION.tar.bz2 && rm $LIBVDPAU_VERSION.tar.bz2
111 RUN (cd $LIBVDPAU_VERSION && ./configure && make install) && rm -rf $LIBVDPAU_VERSION
112
113 RUN wget https://www.freedesktop.org/software/vaapi/releases/libva/$LIBVA_VERSION.tar.bz2
114 RUN tar -xvf $LIBVA_VERSION.tar.bz2 && rm $LIBVA_VERSION.tar.bz2
115 RUN (cd $LIBVA_VERSION && ./configure --disable-wayland --disable-dummy-driver && make install) && rm -rf $LIBVA_VERSION
116
117 RUN wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
118 RUN tar -xvf $LIBWAYLAND_VERSION.tar.xz && rm $LIBWAYLAND_VERSION.tar.xz
119 RUN (cd $LIBWAYLAND_VERSION && ./configure --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation && make install) && rm -rf $LIBWAYLAND_VERSION
120
121 RUN wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
122 RUN tar -xvf $WAYLAND_PROTOCOLS_VERSION.tar.xz && rm $WAYLAND_PROTOCOLS_VERSION.tar.xz
123 RUN (cd $WAYLAND_PROTOCOLS_VERSION && ./configure && make install) && rm -rf $WAYLAND_PROTOCOLS_VERSION
124
125
126 RUN apt-get install -y unzip
127
128 # Meson requires ninja >= 1.6, but xenial has 1.3.x
129 RUN wget https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-linux.zip
130 RUN unzip ninja-linux.zip && rm ninja-linux.zip
131 RUN mv ninja /usr/bin/
132
133
134 RUN pip3 install 'meson>=0.49'
135 RUN pip2 install 'scons>=2.4'
136
137 RUN pip2 install mako
138 RUN pip3 install mako
139
140 # Cleanup workdir
141 WORKDIR /