commit 92e99bb1058dd837c451675175efb8511c5f8e15 parent 5cefec7349610853910c21a0215f85a4d47132d1 Author: dundargoc <gocdundar@gmail.com> Date: Sat, 4 Nov 2023 22:38:25 +0100 ci: don't install unzip It is no longer needed now that luarocks isn't used. Diffstat:
| M | .github/scripts/install_deps.sh | | | 2 | +- |
| M | .github/workflows/optional.yml | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh @@ -12,7 +12,7 @@ done os=$(uname -s) if [[ $os == Linux ]]; then sudo apt-get update - sudo apt-get install -y build-essential cmake curl gettext ninja-build unzip + sudo apt-get install -y build-essential cmake curl gettext ninja-build if [[ $CC == clang ]]; then DEFAULT_CLANG_VERSION=$(echo | clang -dM -E - | grep __clang_major | awk '{print $3}') diff --git a/.github/workflows/optional.yml b/.github/workflows/optional.yml @@ -29,7 +29,7 @@ jobs: bash -c " apt-get -y update && - DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential cmake curl gettext ninja-build unzip locales-all cpanminus git attr libattr1-dev && + DEBIAN_FRONTEND=noninteractive apt-get -y install build-essential cmake curl gettext ninja-build locales-all cpanminus git attr libattr1-dev && git clone --depth=1 https://github.com/neovim/neovim.git && cd neovim && git fetch origin ${{ github.ref }}:pr &&