Skip to content

Commit

Permalink
Merge pull request #4 from dsp/travis
Browse files Browse the repository at this point in the history
Add continuous integration for druid
  • Loading branch information
dsp authored Nov 2, 2018
2 parents 9d0ff53 + 156246a commit 8fbf5e2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
language: rust

rust:
- stable
- nightly

os:
- windows

matrix:
allow_failures:
- rust: nightly
fast_finish: true

# windows builds run in git bash so these (should) Just Work
cache:
directories:
- $HOME/.cargo

script:
- export RUST_BACKTRACE=1
- RUSTFLAGS="-D warnings" cargo check --all || exit
- RUSTFLAGS="-D warnings" cargo check --examples || exit
- cargo test --all || exit
- cargo test --examples || exit

0 comments on commit 8fbf5e2

Please sign in to comment.