mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ci: Reduce verbosity of low-risk tasks.
This commit is contained in:
parent
6e2c02bc6d
commit
f3056988ed
@ -12,13 +12,13 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
||||
fi
|
||||
|
||||
echo "Upgrade Python 2's pip."
|
||||
pip2.7 install --user --upgrade pip
|
||||
pip2.7 -q install --user --upgrade pip
|
||||
|
||||
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
||||
echo "Install Python 3."
|
||||
brew install python3
|
||||
echo "Upgrade Python 3's pip."
|
||||
pip3 install --user --upgrade pip
|
||||
pip3 -q install --user --upgrade pip
|
||||
else
|
||||
# TODO: Replace with upgrade when Travis gets python3-pip package.
|
||||
echo "Install pip for Python 3."
|
||||
|
@ -19,14 +19,13 @@ elif [[ "${BUILD_MINGW}" == ON ]]; then
|
||||
|
||||
fi
|
||||
|
||||
# Set CC to default to avoid compilation problems
|
||||
# when installing Python modules.
|
||||
# Use default CC to avoid compilation problems when installing Python modules.
|
||||
echo "Install neovim module and coveralls for Python 2."
|
||||
CC=cc pip2.7 install --user --upgrade neovim cpp-coveralls
|
||||
CC=cc pip2.7 -q install --user --upgrade neovim cpp-coveralls
|
||||
|
||||
echo "Install neovim module for Python 3."
|
||||
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
||||
CC=cc pip3 install --user --upgrade neovim
|
||||
CC=cc pip3 -q install --user --upgrade neovim
|
||||
else
|
||||
CC=cc pip3.3 install --user --upgrade neovim
|
||||
CC=cc pip3.3 -q install --user --upgrade neovim
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user