-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f35928f
commit fdb2267
Showing
1 changed file
with
10 additions
and
0 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,5 +1,15 @@ | ||
language: rust | ||
before_install: | ||
- rustup target add powerpc64-unknown-linux-gnu | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
fast_finish: true | ||
env: | ||
- CARGO_INCREMENTAL=0 | ||
install: skip | ||
script: | ||
- cargo check --verbose --target powerpc64-unknown-linux-gnu --lib --bins --tests || exit 1 | ||
- cargo build --verbose --all || exit 1 | ||
- cargo test --verbose --all |