mirror of
https://github.com/neovim/neovim.git
synced 2025-09-10 13:28:19 +00:00
ci: use shell script to deduplicate workflow (#21079)
This commit is contained in:
19
.github/scripts/install_deps_ubuntu.sh
vendored
Executable file
19
.github/scripts/install_deps_ubuntu.sh
vendored
Executable file
@@ -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[@]}"
|
Reference in New Issue
Block a user