-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[0.15.12] Ensure backwards-compatibility to rust version 1.37.0
- fixes #60
- Loading branch information
Showing
7 changed files
with
33 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
language: rust | ||
|
||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
matrix: | ||
allow_failures: | ||
- rust: nightly | ||
- os: windows | ||
fast_finish: true | ||
# - 1.37.0 // does not work since cargo test is executed automatically | ||
|
||
os: | ||
- linux | ||
- windows | ||
- osx | ||
|
||
cache: cargo | ||
jobs: | ||
fast_finish: true | ||
allow_failures: | ||
- rust: nightly | ||
- os: windows | ||
include: | ||
- if: rust = stable OR rust = beta OR rust = nightly | ||
script: | ||
- cargo test --release --all-features | ||
- cargo doc --all-features --no-deps | ||
- cargo test --release | ||
- cargo test --release --no-default-features | ||
|
||
script: | ||
- cargo build | ||
- cargo build --all-features | ||
- cargo build --release | ||
- cargo build --release --all-features | ||
- cargo test --release --all-features | ||
- cargo test | ||
- cargo doc --all-features --no-deps | ||
- if: rust = "1.37.0" | ||
script: | ||
- cargo build --release | ||
- cargo build --release --no-default-features | ||
- cargo build --release --all-feature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters