This commit is contained in:
Jorge Aparicio 2017-11-22 09:40:36 +01:00
parent 948e1fd0fb
commit e90cf07dd6
3 changed files with 2 additions and 4 deletions

View file

@ -3,12 +3,12 @@ set -euxo pipefail
main() {
if [ $TARGET = x86_64-unknown-linux-gnu ]; then
cargo build
cargo test --tests
cargo test --test cfail
return
fi
xargo build --target $TARGET
xargo test --target $TARGET --examples
xargo check --target $TARGET --examples
}
main