ci: don't install unnecessary former neovim dependencies (#760)

Also prefer apt-get over apt to not trigger the "apt has no stable CLI
interface" warning.
This commit is contained in:
dundargoc 2023-03-01 22:52:16 +01:00 committed by GitHub
parent f9810bfb65
commit 3b6c0a6412
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 7 deletions

View File

@ -42,19 +42,14 @@ jobs:
- name: Install Neovim build dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
sudo apt update &&
sudo apt install -y \
autoconf \
automake \
sudo apt-get update &&
sudo apt-get install -y \
cmake \
g++ \
gettext \
gperf \
libtool \
libtool-bin \
lua-bitop \
ninja-build \
pkg-config \
unzip
- name: Build Neovim