rhai/.ci/build.sh
2020-03-17 19:26:11 +01:00

14 lines
210 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_stdlib
cargo test --verbose --features no_stdlib
fi