mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
48884ac3b3
Having llvm-symbolizer in the $PATH is enough. - check_logs: remove log after displaying it Otherwise it would be displayed/symbolized again and again. E.g. in https://api.travis-ci.org/v3/job/564477704/log.txt.
65 lines
1.5 KiB
Bash
Executable File
65 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ "${CI_TARGET}" == lint ]]; then
|
|
exit
|
|
fi
|
|
|
|
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
|
|
|
|
# Use pyenv, but not for OSX on Travis, where it only has the "system" version.
|
|
if [[ "${TRAVIS_OS_NAME}" != osx ]] && command -v pyenv; then
|
|
echo 'Setting Python versions via pyenv'
|
|
|
|
# Prefer Python 2 over 3 (more conservative).
|
|
pyenv global 2.7.15:3.7
|
|
|
|
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 [[ "${TRAVIS_OS_NAME}" == osx ]] || [ ! -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 --lts
|
|
nvm use --lts
|
|
|
|
if [[ -n "$CMAKE_URL" ]]; then
|
|
echo "Installing custom CMake: $CMAKE_URL"
|
|
curl --retry 5 --silent --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
|