File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ matrix:
3030 ALT=i686-unknown-linux-gnu
3131 rust : 1.31.0
3232 script :
33- - rustup toolchain install nightly
34- - cargo +nightly generate-lockfile -Z minimal-versions
35- - cargo -V
36- - cargo test --features=deny-warnings
33+ - rustup toolchain install nightly || travis_terminate 1
34+ - cargo +nightly generate-lockfile -Z minimal-versions || travis_terminate 1
35+ - cargo -V || travis_terminate 1
36+ - cargo test --features=deny-warnings || travis_terminate 1
3737 if : branch != master OR type = pull_request
3838
3939 - env : TARGET=x86_64-unknown-linux-gnu
@@ -42,9 +42,9 @@ matrix:
4242 install :
4343 - travis_retry curl -Lf https://github.com/rust-lang-nursery/mdBook/releases/download/v0.1.7/mdbook-v0.1.7-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=$HOME/.cargo/bin
4444 script :
45- - cargo test --features=deny-warnings
46- - cargo doc --no-deps
47- - (cd src/doc && mdbook build --dest-dir ../../target/doc)
45+ - cargo test --features=deny-warnings || travis_terminate 1
46+ - cargo doc --no-deps || travis_terminate 1
47+ - (cd src/doc && mdbook build --dest-dir ../../target/doc) || travis_terminate 1
4848 if : branch != master OR type = pull_request
4949
5050 exclude :
You can’t perform that action at this time.
0 commit comments