diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-04 22:38:25 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-05 11:40:54 +0100 |
commit | 92e99bb1058dd837c451675175efb8511c5f8e15 (patch) | |
tree | 5bdfdcbf06c05c580b83148c52ddfab1af02e002 | |
parent | 5cefec7349610853910c21a0215f85a4d47132d1 (diff) | |
download | rneovim-92e99bb1058dd837c451675175efb8511c5f8e15.tar.gz rneovim-92e99bb1058dd837c451675175efb8511c5f8e15.tar.bz2 rneovim-92e99bb1058dd837c451675175efb8511c5f8e15.zip |
ci: don't install unzip
It is no longer needed now that luarocks isn't used.
-rwxr-xr-x | .github/scripts/install_deps.sh | 2 | ||||
-rw-r--r-- | .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 index 91c1d04081..0533bd7fae 100755 --- 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 index f3bb27dc70..ebaf23d29b 100644 --- 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 && |