Skip to content

Commit

Permalink
.travis.yml: make travis-cargo quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
gifnksm committed Dec 23, 2015
1 parent 0e9adcc commit 8ec2f14
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@ before_script:
script:
- |
if [ -z "${PKG_DIR}" ]; then
travis-cargo build -- --release &&
travis-cargo run -- --release --bin euler &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only ${DOC_UPLOAD_VERSION} doc
travis-cargo -q build -- --release &&
travis-cargo -q run -- --release --bin euler &&
travis-cargo -q test &&
travis-cargo -q bench &&
travis-cargo -q --only ${DOC_UPLOAD_VERSION} doc
else
cd "${TRAVIS_BUILD_DIR}/${PKG_DIR}"
travis-cargo build &&
travis-cargo test &&
travis-cargo bench
travis-cargo -q build &&
travis-cargo -q test &&
travis-cargo -q bench
fi
after_success:
- |
if [ -z "${PKG_DIR}" ]; then
travis-cargo --only ${DOC_UPLOAD_VERSION} doc-upload
travis-cargo -q --only ${DOC_UPLOAD_VERSION} doc-upload
else
cd "${TRAVIS_BUILD_DIR}/${PKG_DIR}"
fi
- travis-cargo coveralls --no-sudo
- travis-cargo -q coveralls --no-sudo

env:
matrix:
Expand Down

0 comments on commit 8ec2f14

Please sign in to comment.