diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-12-05 11:58:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 11:58:13 +0100 |
commit | 5c52971f603d35aa689022eb0a0bc670ab6788e6 (patch) | |
tree | 8a4e70fea61baab2785ebd2ec6f03f450e672bc4 /.github/scripts/install_deps_ubuntu.sh | |
parent | 9d8dbd9846e79c110481847dcd98c94fb2d2d3dd (diff) | |
download | rneovim-5c52971f603d35aa689022eb0a0bc670ab6788e6.tar.gz rneovim-5c52971f603d35aa689022eb0a0bc670ab6788e6.tar.bz2 rneovim-5c52971f603d35aa689022eb0a0bc670ab6788e6.zip |
ci: use shell script to deduplicate workflow (#21079)
Diffstat (limited to '.github/scripts/install_deps_ubuntu.sh')
-rwxr-xr-x | .github/scripts/install_deps_ubuntu.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/scripts/install_deps_ubuntu.sh b/.github/scripts/install_deps_ubuntu.sh new file mode 100755 index 0000000000..012409ba4a --- /dev/null +++ b/.github/scripts/install_deps_ubuntu.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +PACKAGES=( + autoconf + automake + build-essential + cmake + cpanminus + curl + gettext + libtool-bin + locales-all + ninja-build + pkg-config + unzip +) + +sudo apt-get update +sudo apt-get install -y "${PACKAGES[@]}" |