mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-11-23 11:07:52 -05:00
first attempt at a travis config
This just does a build+test. I'll try the install scripts (for #58) in a following commit.
This commit is contained in:
13
.travis.yml
Normal file
13
.travis.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
language: rust
|
||||
rust:
|
||||
- stable
|
||||
- nightly
|
||||
- 1.17
|
||||
matrix:
|
||||
allow_failures:
|
||||
- rust: nightly
|
||||
cache: cargo
|
||||
script:
|
||||
- cargo build --verbose --all
|
||||
- cargo test --verbose --all
|
||||
- 'if [ $TRAVIS_RUST_VERSION = nightly ]; then cargo bench --verbose --all; fi'
|
||||
Reference in New Issue
Block a user