Skip to content

Commit

Permalink
Update Travis configuration
Browse files Browse the repository at this point in the history
Silence emails on successful builds, don't be verbose. Fixes #6
  • Loading branch information
sondr3 committed Dec 27, 2018
1 parent db5c363 commit 3b441d6
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ matrix:
- name: "Clippy"
rust: stable
before_script: rustup component add clippy-preview
script: cargo clippy --all
script: cargo clippy

- name: "rustfmt"
rust: stable
Expand All @@ -30,15 +30,19 @@ matrix:
- name: "release"
rust: stable
script:
- cargo build --verbose --all --release
- cargo test --verbose --all --release
- cargo doc --verbose --all --release
- cargo build --release
- cargo test --release
- cargo doc --release

- os: osx
osx_image: xcode10
- os: windows

script:
- cargo build --all --verbose
- cargo test --all --verbose
- cargo doc --all --verbose
- cargo build
- cargo test
- cargo doc

notifications:
email:
on_success: never

0 comments on commit 3b441d6

Please sign in to comment.