diff options
author | Michel Dänzer <[email protected]> | 2019-04-03 12:21:48 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2019-04-16 10:41:07 +0200 |
commit | 792d6987a384b4639a9616689a7b62f3349d67d5 (patch) | |
tree | cb2d02f32acc3e13a2df3275760e5c0e42e4f712 | |
parent | e9de19ffcaace73931260cd8ef935f077c13ec23 (diff) |
gitlab-ci: Remove unneded (stuff from) APT command lines
We either compile these locally, or they are dependencies of other
packages we install.
v2:
* Adapt to leaving self-compiled packages untouched.
Reviewed-by: Eric Engestrom <[email protected]>
-rw-r--r-- | .gitlab-ci/debian-install.sh | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index bc3580c716b..bd8348d9b72 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -42,15 +42,9 @@ apt-get install -y \ bzip2 \ zlib1g-dev \ pkg-config \ - libdrm-dev \ - libpciaccess-dev \ - libxrandr-dev \ + libxrender-dev \ libxdamage-dev \ - libxfixes-dev \ - libxshmfence-dev \ libxxf86vm-dev \ - libvdpau-dev \ - libva-dev \ gcc \ libclc-dev \ libxvmc-dev \ @@ -58,7 +52,6 @@ apt-get install -y \ xz-utils \ libexpat1-dev \ libx11-xcb-dev \ - x11proto-xf86vidmode-dev \ libelf-dev \ libunwind-dev \ libglvnd-dev \ @@ -67,14 +60,9 @@ apt-get install -y \ meson \ scons -apt-get install -y \ - libxcb-randr0 - # autotools build deps apt-get install -y \ - autoconf \ automake \ - xutils-dev \ libtool \ bison \ flex \ |