Skip to content

Commit

Permalink
HACK: print contents of rust tmp files on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Apr 2, 2019
1 parent b21713a commit 5ecd748
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -227,12 +227,12 @@ matrix:
- rustup target add x86_64-unknown-redox
script:
# Test all crates, and the top-level crate with all features:
- cargo build --target=x86_64-sun-solaris --all --all-features
- cargo build --target=x86_64-unknown-cloudabi --all --all-features
- cargo build --target=x86_64-unknown-freebsd --all --all-features
- cargo build --target=x86_64-sun-solaris --all --all-features || for f in "$(ls -dt /tmp/rust* | head -1)/*"; do ls -l $f; cat $f; done
- cargo build --target=x86_64-unknown-cloudabi --all --all-features || for f in "$(ls -dt /tmp/rust* | head -1)/*"; do ls -l $f; cat $f; done
- cargo build --target=x86_64-unknown-freebsd --all --all-features || for f in "$(ls -dt /tmp/rust* | head -1)/*"; do ls -l $f; cat $f; done
#- cargo build --target=x86_64-unknown-fuchsia --all --all-features
- cargo build --target=x86_64-unknown-netbsd --all --all-features
- cargo build --target=x86_64-unknown-redox --all --all-features
- cargo build --target=x86_64-unknown-netbsd --all --all-features || for f in "$(ls -dt /tmp/rust* | head -1)/*"; do ls -l $f; cat $f; done
- cargo build --target=x86_64-unknown-redox --all --all-features || for f in "$(ls -dt /tmp/rust* | head -1)/*"; do ls -l $f; cat $f; done

# Trust cross-built/emulated targets. We must repeat all non-default values.
- rust: stable
Expand Down

0 comments on commit 5ecd748

Please sign in to comment.