diff options
| author | Jakub Łuczyński <doubleloop@users.noreply.github.com> | 2021-10-20 04:19:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-19 19:19:33 -0700 |
| commit | 035d82e0d3c1c4af09111578e20cf672bd4c432b (patch) | |
| tree | 3441a4feec770f1752092d5797564d6de4ef3166 /ci | |
| parent | 427bac687746b2bb66537b39115969c8d3a440c1 (diff) | |
| download | rneovim-035d82e0d3c1c4af09111578e20cf672bd4c432b.tar.gz rneovim-035d82e0d3c1c4af09111578e20cf672bd4c432b.tar.bz2 rneovim-035d82e0d3c1c4af09111578e20cf672bd4c432b.zip | |
build: update cmake min version to 3.10 #16065
* build(cmake): update cmake min version to 3.10
* ci: test cmake minimum required version
* build(cmake): remove some legacy includes
* Since version 3.5 cmake_parse_arguments is implemented natively.
Diffstat (limited to 'ci')
| -rwxr-xr-x | ci/before_install.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ci/before_install.sh b/ci/before_install.sh index c3fd8bdbde..f12f972fe0 100755 --- a/ci/before_install.sh +++ b/ci/before_install.sh @@ -44,16 +44,3 @@ fi source ~/.nvm/nvm.sh nvm install 10 - -if [[ -n "$CMAKE_URL" ]]; then - echo "Installing custom CMake: $CMAKE_URL" - curl --retry 5 --silent --show-error --fail -o /tmp/cmake-installer.sh "$CMAKE_URL" - mkdir -p "$HOME/.local/bin" /opt/cmake-custom - bash /tmp/cmake-installer.sh --prefix=/opt/cmake-custom --skip-license - ln -sfn /opt/cmake-custom/bin/cmake "$HOME/.local/bin/cmake" - cmake_version="$(cmake --version)" - echo "$cmake_version" | grep -qF '2.8.12' || { - echo "Unexpected CMake version: $cmake_version" - exit 1 - } -fi |