Skip to content

Commit 4e976cf

Browse files
ifranzkijschmidb
authored andcommitted
TRAVIS: Make sure output on stderr is visible in travis log
Pipe stderr through tee to output everything on stdout. Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com>
1 parent 30bf08d commit 4e976cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env: CONFIG_OPTS="--enable-fips --enable-internal-tests"
1818

1919
before_script:
20-
- ./bootstrap.sh
20+
- ./bootstrap.sh 2> >(tee)
2121

2222
script:
23-
- ./configure $CONFIG_OPTS && make check
23+
- ./configure $CONFIG_OPTS 2> >(tee) && make check V=0 2> >(tee)

0 commit comments

Comments
 (0)