mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-25 14:45:54 -05:00
fc0bc51bed
This is a separate item in the matrix, so it doesn't go through this for each of the three Rust versions.
7 lines
119 B
Bash
Executable File
7 lines
119 B
Bash
Executable File
#!/bin/bash -e
|
|
cargo build --all
|
|
cargo test --all
|
|
if [ "$TRAVIS_RUST_VERSION" = nightly ]; then
|
|
cargo bench --all
|
|
fi
|