From 0ec5117b5a2e4baff0fbe6aa8dd8a27d98bd9d32 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 28 Jul 2016 14:37:59 +0200 Subject: [PATCH 1/2] travis: Dont call cargo with --verbose flag --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 04212180..49be3f26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,9 +34,9 @@ script: [[ -d "$1" ]] && cd "$1" && { - travis-cargo build && - travis-cargo test && - travis-cargo bench && + travis-cargo -q build && + travis-cargo -q test && + travis-cargo -q bench && travis-cargo --only stable doc && cd - } || exit 1 From c7b9de3bbd142f3803eda5405d26e645174a584e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 28 Jul 2016 14:39:10 +0200 Subject: [PATCH 2/2] travis: try to remove "tree" call --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 49be3f26..f96cd1b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,6 @@ script: { \ echo -e "\n--- Running in $d ---\n" && \ travis_cargo_run_in $dir && \ - tree -I "*doc*" $dir && \ echo "--- Running test scripts ---" && \ for testsh in $(find $dir -iname "*test.sh"); do run_sh_test $testsh @@ -71,7 +70,6 @@ addons: - libcurl4-openssl-dev - libelf-dev - libdw-dev - - tree after_success: - travis-cargo --only stable doc-upload