14 lines
204 B
Bash
Executable File
14 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
cargo build --verbose
|
|
cargo test --verbose
|
|
|
|
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]
|
|
then
|
|
cargo build --verbose --features no_std
|
|
cargo test --verbose --features no_std
|
|
fi
|
|
|