gitlab-ci: Use sorted lists of distro packages, one per line
This will make it easier to review changes. Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Olivier Fourdan <ofourdan@redhat.com>
This commit is contained in:
parent
37a64ede3b
commit
a52122c7f2
|
@ -6,10 +6,23 @@ set -o xtrace
|
||||||
echo 'deb-src https://deb.debian.org/debian testing main' > /etc/apt/sources.list.d/deb-src.list
|
echo 'deb-src https://deb.debian.org/debian testing main' > /etc/apt/sources.list.d/deb-src.list
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y \
|
apt-get install -y \
|
||||||
meson git ca-certificates ccache automake autoconf libtool \
|
autoconf \
|
||||||
libxkbcommon-dev python3-mako python3-numpy python3-six \
|
automake \
|
||||||
x11-utils x11-xserver-utils xauth xvfb \
|
ca-certificates \
|
||||||
libgl1 libglx-mesa0
|
ccache \
|
||||||
|
git \
|
||||||
|
libgl1 \
|
||||||
|
libglx-mesa0 \
|
||||||
|
libtool \
|
||||||
|
libxkbcommon-dev \
|
||||||
|
meson \
|
||||||
|
python3-mako \
|
||||||
|
python3-numpy \
|
||||||
|
python3-six \
|
||||||
|
x11-utils \
|
||||||
|
x11-xserver-utils \
|
||||||
|
xauth \
|
||||||
|
xvfb \
|
||||||
|
|
||||||
apt-get build-dep -y xorg-server
|
apt-get build-dep -y xorg-server
|
||||||
|
|
||||||
|
@ -37,6 +50,12 @@ echo 'path=/root/xts' >> piglit/piglit.conf
|
||||||
find -name \*.a -o -name \*.o -o -name \*.c -o -name \*.h -o -name \*.la\* | xargs rm
|
find -name \*.a -o -name \*.o -o -name \*.c -o -name \*.h -o -name \*.la\* | xargs rm
|
||||||
strip xts/xts5/*/.libs/*
|
strip xts/xts5/*/.libs/*
|
||||||
|
|
||||||
apt-get purge -y git libxkbcommon-dev \
|
apt-get purge -y \
|
||||||
x11-utils x11-xserver-utils xauth xvfb
|
git \
|
||||||
|
libxkbcommon-dev \
|
||||||
|
x11-utils \
|
||||||
|
x11-xserver-utils \
|
||||||
|
xauth \
|
||||||
|
xvfb \
|
||||||
|
|
||||||
apt-get autoremove -y --purge
|
apt-get autoremove -y --purge
|
||||||
|
|
Loading…
Reference in New Issue