CI: exit at the first command that fails.

This commit is contained in:
sebcrozet 2018-05-24 19:19:22 +02:00 committed by Sébastien Crozet
parent bc54e61031
commit 4141e28cb2
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#! /bin/bash
set -ev
if [ -z "$NO_STD" ]; then
cargo build --verbose;
cargo build --verbose --features "arbitrary";

View File

@ -1,5 +1,7 @@
#! /bin/bash
set -ev
if [ -z "$NO_STD" ]; then
cargo test --verbose;
cargo test --verbose "debug arbitrary mint serde-serialize abomonation-serialize";