diff --git a/.travis/install-cython-examples.sh b/.travis/install-cython-examples.sh index 4b7629144..bc742c132 100755 --- a/.travis/install-cython-examples.sh +++ b/.travis/install-cython-examples.sh @@ -12,7 +12,7 @@ cython_examples="$ROOT_DIR/../examples/cython" if [[ "$PYTHON" == "2.7" ]]; then pushd $cython_examples - pip install scipy + pip install --progress-bar=off scipy python setup.py install --user popd @@ -20,7 +20,7 @@ elif [[ "$PYTHON" == "3.5" ]]; then export PATH="$HOME/miniconda/bin:$PATH" pushd $cython_examples - pip install scipy + pip install --progress-bar=off scipy python setup.py install --user popd diff --git a/thirdparty/scripts/build_arrow.sh b/thirdparty/scripts/build_arrow.sh index fcf2858ba..bf6fc2bfe 100755 --- a/thirdparty/scripts/build_arrow.sh +++ b/thirdparty/scripts/build_arrow.sh @@ -46,7 +46,7 @@ build_arrow() { fi if [[ ! -d $TP_DIR/build/arrow ]]; then - git clone https://github.com/apache/arrow.git "$TP_DIR/build/arrow" + git clone -q https://github.com/apache/arrow.git "$TP_DIR/build/arrow" fi if ! [ -x "$(command -v bison)" ]; then diff --git a/thirdparty/scripts/build_credis.sh b/thirdparty/scripts/build_credis.sh index 004252610..df2ca3123 100644 --- a/thirdparty/scripts/build_credis.sh +++ b/thirdparty/scripts/build_credis.sh @@ -29,7 +29,7 @@ fi if [[ "${RAY_USE_NEW_GCS}" = "on" ]]; then pushd "$TP_DIR/pkg/" if [[ ! -d "credis" ]]; then - git clone --recursive https://github.com/ray-project/credis + git clone -q --recursive https://github.com/ray-project/credis fi popd diff --git a/thirdparty/scripts/build_parquet.sh b/thirdparty/scripts/build_parquet.sh index 2075c068d..caca4d1dd 100755 --- a/thirdparty/scripts/build_parquet.sh +++ b/thirdparty/scripts/build_parquet.sh @@ -51,7 +51,7 @@ build_parquet() { } if [ ! -d $TP_DIR/build/parquet-cpp ]; then - git clone https://github.com/apache/parquet-cpp.git "$TP_DIR/build/parquet-cpp" + git clone -q https://github.com/apache/parquet-cpp.git "$TP_DIR/build/parquet-cpp" pushd $TP_DIR/build/parquet-cpp git fetch origin master git checkout $TARGET_COMMIT_ID diff --git a/thirdparty/scripts/build_ui.sh b/thirdparty/scripts/build_ui.sh index 82e3d7802..eeab6ca91 100755 --- a/thirdparty/scripts/build_ui.sh +++ b/thirdparty/scripts/build_ui.sh @@ -39,7 +39,7 @@ if [[ ! -d $CATAPULT_HOME ]]; then # The git clone command seems to fail in Travis, so retry up to 20 times. for COUNT in {1..20}; do # Attempt to git clone catapult and break from the retry loop if it succeeds. - git clone https://github.com/ray-project/catapult.git $CATAPULT_HOME && break + git clone -q https://github.com/ray-project/catapult.git $CATAPULT_HOME && break # If none of the retries succeeded at getting boost, then fail. if [[ $COUNT == 20 ]]; then exit 1