diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-12 22:09:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-12 22:09:10 +0100 |
commit | 5d3769ea2343a30c60963011bef85346320bd97c (patch) | |
tree | 7cbdecd8195dba423391d81f2efbf2021fd04434 /.github/scripts | |
parent | 5f72ab77bff1f1224be5cbbf9423bdddbc25635c (diff) | |
download | rneovim-5d3769ea2343a30c60963011bef85346320bd97c.tar.gz rneovim-5d3769ea2343a30c60963011bef85346320bd97c.tar.bz2 rneovim-5d3769ea2343a30c60963011bef85346320bd97c.zip |
ci: install dependencies with a single script (#22241)
It's easier if the os-specific installations are done by the script itself
Diffstat (limited to '.github/scripts')
-rw-r--r-- | .github/scripts/install_dependencies.cmake | 27 | ||||
-rwxr-xr-x | .github/scripts/install_deps_ubuntu.sh | 19 |
2 files changed, 27 insertions, 19 deletions
diff --git a/.github/scripts/install_dependencies.cmake b/.github/scripts/install_dependencies.cmake new file mode 100644 index 0000000000..c2299614c0 --- /dev/null +++ b/.github/scripts/install_dependencies.cmake @@ -0,0 +1,27 @@ +cmake_minimum_required(VERSION 3.10) + +if(APPLE) + execute_process(COMMAND brew update --quiet) + execute_process(COMMAND brew install automake ninja) + if(TEST_DEPS) + execute_process(COMMAND brew install cpanminus) + endif() +else() + # Assuming ubuntu for now. May expand if required. + set(PACKAGES + autoconf + automake + build-essential + curl + gettext + libtool-bin + locales-all + ninja-build + pkg-config + unzip) + execute_process(COMMAND sudo apt-get update) + execute_process(COMMAND sudo apt-get install -y ${PACKAGES}) + if(TEST_DEPS) + execute_process(COMMAND sudo apt-get install -y cpanminus) + endif() +endif() diff --git a/.github/scripts/install_deps_ubuntu.sh b/.github/scripts/install_deps_ubuntu.sh deleted file mode 100755 index 012409ba4a..0000000000 --- a/.github/scripts/install_deps_ubuntu.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/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[@]}" |