mirror of
https://github.com/vim/vim
synced 2025-07-15 16:51:57 +00:00
CI: get rid of snap and speed up CI (#13938)
Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -90,6 +90,10 @@ jobs:
|
|||||||
- run: sudo dpkg --add-architecture i386
|
- run: sudo dpkg --add-architecture i386
|
||||||
if: matrix.architecture == 'i386'
|
if: matrix.architecture == 'i386'
|
||||||
|
|
||||||
|
- name: Uninstall snap
|
||||||
|
run: |
|
||||||
|
sudo bash ci/remove_snap.sh
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
PKGS=( \
|
PKGS=( \
|
||||||
|
1
Filelist
1
Filelist
@ -20,6 +20,7 @@ SRC_ALL = \
|
|||||||
ci/config.mk*.sed \
|
ci/config.mk*.sed \
|
||||||
ci/if_ver*.vim \
|
ci/if_ver*.vim \
|
||||||
ci/setup-xvfb.sh \
|
ci/setup-xvfb.sh \
|
||||||
|
ci/remove_snap.sh \
|
||||||
src/Make_all.mak \
|
src/Make_all.mak \
|
||||||
src/README.md \
|
src/README.md \
|
||||||
src/alloc.c \
|
src/alloc.c \
|
||||||
|
13
ci/remove_snap.sh
Normal file
13
ci/remove_snap.sh
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env sh
|
||||||
|
pushd /etc/apt/preferences.d/
|
||||||
|
cat > nosnap.pref <<EOF
|
||||||
|
# To prevent repository packages from triggering the installation of snap,
|
||||||
|
# this file forbids snapd from being installed by APT.
|
||||||
|
|
||||||
|
Package: snapd
|
||||||
|
Pin: release a=*
|
||||||
|
Pin-Priority: -10
|
||||||
|
EOF
|
||||||
|
popd
|
||||||
|
snap remove --purge $(snap list | awk '!/^Name|^core/ {print $1}')
|
||||||
|
apt-get purge -y snapd
|
Reference in New Issue
Block a user