aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-01-02 22:11:20 +0100
committerDundar Göc <gocdundar@gmail.com>2022-01-02 23:46:46 +0100
commite71fbf2eb0ca247d1fa02bdf244904189ab937be (patch)
tree3486c476b35c355b180b242fc611d861e9eebafb
parentb0993bdc45cad621976b9cc2c6ce7ee29dbeb93d (diff)
downloadrneovim-e71fbf2eb0ca247d1fa02bdf244904189ab937be.tar.gz
rneovim-e71fbf2eb0ca247d1fa02bdf244904189ab937be.tar.bz2
rneovim-e71fbf2eb0ca247d1fa02bdf244904189ab937be.zip
ci: remove unnecessary before_install script
-rw-r--r--.github/workflows/ci.yml3
-rwxr-xr-xci/before_install.sh45
-rwxr-xr-xci/install.sh2
-rwxr-xr-xci/run_tests.sh4
4 files changed, 0 insertions, 54 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c01980083a..b2e1276000 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -34,7 +34,6 @@ jobs:
- name: Setup interpreter packages
run: |
- ./ci/before_install.sh
./ci/install.sh
- name: Cache dependencies
@@ -109,7 +108,6 @@ jobs:
- name: Setup interpreter packages
run: |
- ./ci/before_install.sh
./ci/install.sh
- name: Cache dependencies
@@ -200,7 +198,6 @@ jobs:
- name: Setup interpreter packages
run: |
- ./ci/before_install.sh
./ci/install.sh
- name: Cache dependencies
diff --git a/ci/before_install.sh b/ci/before_install.sh
deleted file mode 100755
index f4ea720d09..0000000000
--- a/ci/before_install.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-set -o pipefail
-
-echo 'Python info:'
-(
- set -x
- python3 --version
- python2 --version
- python --version
- pip3 --version
- pip2 --version
- pip --version
-
- pyenv --version
- pyenv versions
-) 2>&1 | sed 's/^/ /' || true
-
-if command -v pyenv; then
- echo 'Setting Python versions via pyenv'
-
- # Prefer Python 2 over 3 (more conservative).
- pyenv global 2.7:3.8
-
- echo 'Updated Python info:'
- (
- set -x
- python3 --version
- python2 --version
- python --version
-
- python3 -m pip --version
- python2 -m pip --version
- ) 2>&1 | sed 's/^/ /'
-fi
-
-echo "Install node (LTS)"
-
-if [ ! -f ~/.nvm/nvm.sh ]; then
- curl -o ~/.nvm/nvm.sh https://raw.githubusercontent.com/creationix/nvm/master/nvm.sh
-fi
-
-source ~/.nvm/nvm.sh
-nvm install 10
diff --git a/ci/install.sh b/ci/install.sh
index 72e193a353..ea706639fb 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -20,8 +20,6 @@ echo "Install neovim RubyGem."
gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim
echo "Install neovim npm package"
-source ~/.nvm/nvm.sh
-nvm use 10
npm install -g neovim
npm link neovim
diff --git a/ci/run_tests.sh b/ci/run_tests.sh
index d91ac5589e..c175910da5 100755
--- a/ci/run_tests.sh
+++ b/ci/run_tests.sh
@@ -17,10 +17,6 @@ build_nvim
exit_suite --continue
-source ~/.nvm/nvm.sh
-nvm use 10
-
-
enter_suite tests
if test "$CLANG_SANITIZER" != "TSAN" ; then