diff options
author | Michel Dänzer <mdaenzer@redhat.com> | 2019-12-23 09:32:07 +0100 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2020-01-06 15:52:31 +0100 |
commit | a52122c7f2697361f53e82ac384ff3f4eba24c76 (patch) | |
tree | 17a4939a82f1cfcd8385a6acd58f7296c4e9cf9d | |
parent | 37a64ede3b545cda9edde65c65c02054d2da43cb (diff) |
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>
-rw-r--r-- | .gitlab-ci/debian-install.sh | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index 8542a62af..18e030541 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -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 apt-get update apt-get install -y \ - meson git ca-certificates ccache automake autoconf libtool \ - libxkbcommon-dev python3-mako python3-numpy python3-six \ - x11-utils x11-xserver-utils xauth xvfb \ - libgl1 libglx-mesa0 + autoconf \ + automake \ + ca-certificates \ + 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 @@ -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 strip xts/xts5/*/.libs/* -apt-get purge -y git libxkbcommon-dev \ - x11-utils x11-xserver-utils xauth xvfb +apt-get purge -y \ + git \ + libxkbcommon-dev \ + x11-utils \ + x11-xserver-utils \ + xauth \ + xvfb \ + apt-get autoremove -y --purge |