aboutsummaryrefslogtreecommitdiff
path: root/.github/scripts
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-09-09 10:36:42 +0200
committerGitHub <noreply@github.com>2023-09-09 10:36:42 +0200
commitb7734c4ec84f0de14fcf86cfacefbed8a3ecf600 (patch)
tree140079d4e0d9d36b3135095239e0e5c39178741e /.github/scripts
parent294ded9cf26a1a1cab9071588e41bb3ce9474f18 (diff)
downloadrneovim-b7734c4ec84f0de14fcf86cfacefbed8a3ecf600.tar.gz
rneovim-b7734c4ec84f0de14fcf86cfacefbed8a3ecf600.tar.bz2
rneovim-b7734c4ec84f0de14fcf86cfacefbed8a3ecf600.zip
ci: remove container solution for the linux runner
This will fix the failing release job. Ubuntu 18.04 is incompatible with checkout action version 4, which requires glibc 2.28+. This will bump the minimum glibc version required to use the release versions to 2.31. People requring the older releases can find them at https://github.com/neovim/neovim-releases.
Diffstat (limited to '.github/scripts')
-rwxr-xr-x.github/scripts/install_deps.sh12
1 files changed, 3 insertions, 9 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh
index 32591eb8da..6a4e163feb 100755
--- a/.github/scripts/install_deps.sh
+++ b/.github/scripts/install_deps.sh
@@ -1,26 +1,20 @@
#!/bin/bash
-SUDO="sudo"
-
while (($# > 0)); do
case $1 in
--test) # install test dependencies
TEST=1
shift
;;
- --container) # don't use sudo
- SUDO=""
- shift
- ;;
esac
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 update
+ sudo apt-get install -y build-essential cmake curl gettext ninja-build unzip
if [[ -n $TEST ]]; then
- $SUDO apt-get install -y locales-all cpanminus
+ sudo apt-get install -y locales-all cpanminus
fi
elif [[ $os == Darwin ]]; then
brew update --quiet