From 3b6c0a6412b31b91eb26bb8f712562cf7bb1d3be Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Wed, 1 Mar 2023 22:52:16 +0100 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc1eec1..2475da1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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