mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-28 08:05:55 -05:00
7 lines
119 B
Bash
7 lines
119 B
Bash
|
#!/bin/bash -e
|
||
|
cargo build --all
|
||
|
cargo test --all
|
||
|
if [ "$TRAVIS_RUST_VERSION" = nightly ]; then
|
||
|
cargo bench --all
|
||
|
fi
|