Skip to content

Commit

Permalink
better command line output in CI pipeline #64
Browse files Browse the repository at this point in the history
  • Loading branch information
frosklis committed Mar 16, 2021
1 parent db33786 commit d75ad2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
install: |
if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
cargo install cargo-tarpaulin
if [[ "$TRAVIS_EVENT_TYPE" == tag ]]; then
if [[ "$TRAVIS_EVENT_TYPE" == "tag" ]]; then
echo "Installing additional targets."
rustup target add x86_64-apple-darwin &
rustup target add aarch64-apple-darwin &
rustup target add armv7-unknown-linux-gnueabihf &
Expand All @@ -35,6 +36,7 @@ install: |
rustup target add x86_64-pc-windows-gnu &
rustup target add x86_64-pc-windows-msvctarget &
wait
echo "finished rustup installation"
fi
fi
Expand Down

0 comments on commit d75ad2a

Please sign in to comment.