Skip to content

Commit

Permalink
Merge pull request #65 from bgilbert/rust
Browse files Browse the repository at this point in the history
Rewrite coreos-installer in Rust
  • Loading branch information
bgilbert authored Oct 30, 2019
2 parents 0bc740b + a6b8963 commit 6728bfa
Show file tree
Hide file tree
Showing 13 changed files with 3,078 additions and 1,478 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
26 changes: 26 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
language: rust
rust:
- 1.37.0 # pinned toolchain for clippy
- 1.37.0 # minimum supported toolchain
- stable
- beta
- nightly

matrix:
allow_failures:
- rust: nightly

env:
global:
- CLIPPY_RUST_VERSION=1.37.0

before_script:
- bash -c 'if [[ "$TRAVIS_RUST_VERSION" == "$CLIPPY_RUST_VERSION" ]]; then
rustup component add clippy;
fi'

script:
- cargo test
- bash -c 'if [[ "$TRAVIS_RUST_VERSION" == "$CLIPPY_RUST_VERSION" ]]; then
cargo clippy -- -D warnings;
fi'
Loading

0 comments on commit 6728bfa

Please sign in to comment.