Skip to content

Commit

Permalink
Improve TravisCI config by building benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Aug 26, 2019
1 parent 814ffd5 commit 4040cce
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: rust
rust:
- stable
- beta
- nightly


script:
Expand All @@ -18,6 +17,14 @@ matrix:
- name: "Check style"
language: generic
script: ./ci/check-basic-style.sh
- name: "Nightly (with benchmarks)"
language: rust
rust: nightly
script:
- cargo build || travis_terminate 1
- cargo build --benches --features=nightly-bench || travis_terminate 1
- cargo test || travis_terminate 1
- cargo doc || travis_terminate 1
- name: "Miri tests (nightly)"
language: rust
rust: nightly
Expand Down

0 comments on commit 4040cce

Please sign in to comment.