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