Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
Send all output via tee
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Stone <sstone1@uk.ibm.com>
  • Loading branch information
Simon Stone committed Mar 5, 2018
1 parent 219b20c commit 072b3e5
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,27 @@ addons:
before_install: |
set -ev
date
./.travis/before-install.sh
./.travis/before-install.sh 2>&1 | tee
date
install: |
set -ev
date
./.travis/install.sh
./.travis/install.sh 2>&1 | tee
date
script: |
set -ev
date
./.travis/script.sh 2>&1 | tee
date
script: ./.travis/script.sh
after_failure: |
tail -n +1 -- /home/travis/.npm/_logs/*-debug.log
deploy:
provider: script
script: ./.travis/deploy.sh
script: |
set -ev
date
./.travis/deploy.sh
date
skip_cleanup: true
on:
all_branches: true
Expand Down

0 comments on commit 072b3e5

Please sign in to comment.