Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add Travis CI build for Windows
This adds Travis CI builds for druid on Windows. It builds
all targets + examples. This closes #3.
  • Loading branch information
dsp authored and David Soria Parra committed Nov 2, 2018
commit 156246a944461e39cb31740062e360802586c57c
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