diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-01-02 22:11:20 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-01-02 23:46:46 +0100 |
commit | e71fbf2eb0ca247d1fa02bdf244904189ab937be (patch) | |
tree | 3486c476b35c355b180b242fc611d861e9eebafb | |
parent | b0993bdc45cad621976b9cc2c6ce7ee29dbeb93d (diff) | |
download | rneovim-e71fbf2eb0ca247d1fa02bdf244904189ab937be.tar.gz rneovim-e71fbf2eb0ca247d1fa02bdf244904189ab937be.tar.bz2 rneovim-e71fbf2eb0ca247d1fa02bdf244904189ab937be.zip |
ci: remove unnecessary before_install script
-rw-r--r-- | .github/workflows/ci.yml | 3 | ||||
-rwxr-xr-x | ci/before_install.sh | 45 | ||||
-rwxr-xr-x | ci/install.sh | 2 | ||||
-rwxr-xr-x | ci/run_tests.sh | 4 |
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 |