CI: exit at the first command that fails.
This commit is contained in:
parent
bc54e61031
commit
4141e28cb2
|
@ -1,5 +1,7 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -ev
|
||||||
|
|
||||||
if [ -z "$NO_STD" ]; then
|
if [ -z "$NO_STD" ]; then
|
||||||
cargo build --verbose;
|
cargo build --verbose;
|
||||||
cargo build --verbose --features "arbitrary";
|
cargo build --verbose --features "arbitrary";
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
|
set -ev
|
||||||
|
|
||||||
if [ -z "$NO_STD" ]; then
|
if [ -z "$NO_STD" ]; then
|
||||||
cargo test --verbose;
|
cargo test --verbose;
|
||||||
cargo test --verbose "debug arbitrary mint serde-serialize abomonation-serialize";
|
cargo test --verbose "debug arbitrary mint serde-serialize abomonation-serialize";
|
||||||
|
|
Loading…
Reference in New Issue