Skip to content

Commit

Permalink
Update travis to build on all three major platforms
Browse files Browse the repository at this point in the history
Utilizes the automatic build matrix to build with both wanted Rust
versions on all platforms. Builds without default features, and on
nightly with minimal versions are only ran on the Linux platform.
  • Loading branch information
HeroicKatora committed Apr 29, 2019
1 parent a1ad801 commit 12c403a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
language: rust
os:
- linux
- osx
- windows
rust:
- stable
- nightly
matrix:
include:
- rust: stable
- rust: stable
env: FLAGS="--no-default-features"
- rust: nightly
- rust: nightly
env: FLAGS="-Z minimal-versions"
script:
Expand Down

0 comments on commit 12c403a

Please sign in to comment.