aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-07-03 04:35:16 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-07-03 04:39:36 -0400
commitf3056988ed47ae50b842521f998ea1e53da986fd (patch)
treecf39d0b4036d2b0326a36a2510330b0346ed0307
parent6e2c02bc6debd17e9bbbc20f1c657770b265d658 (diff)
downloadrneovim-f3056988ed47ae50b842521f998ea1e53da986fd.tar.gz
rneovim-f3056988ed47ae50b842521f998ea1e53da986fd.tar.bz2
rneovim-f3056988ed47ae50b842521f998ea1e53da986fd.zip
ci: Reduce verbosity of low-risk tasks.
-rwxr-xr-x.ci/before_install.sh4
-rwxr-xr-x.ci/install.sh9
2 files changed, 6 insertions, 7 deletions
diff --git a/.ci/before_install.sh b/.ci/before_install.sh
index 2a1ac05569..1bdd89de42 100755
--- a/.ci/before_install.sh
+++ b/.ci/before_install.sh
@@ -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."
diff --git a/.ci/install.sh b/.ci/install.sh
index fb5d1c09c1..cb2362a70e 100755
--- a/.ci/install.sh
+++ b/.ci/install.sh
@@ -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