forked from jasder/antlr
Write any dumpstream files into the Travis logs.
This means that we will see the errors if Surefire is bailing for any reason.
This commit is contained in:
parent
0f6581e480
commit
c2d69af6db
|
@ -202,4 +202,9 @@ before_install:
|
||||||
- f="./.travis/before-install-$TRAVIS_OS_NAME-$TARGET.sh"; ! [ -x "$f" ] || "$f"
|
- f="./.travis/before-install-$TRAVIS_OS_NAME-$TARGET.sh"; ! [ -x "$f" ] || "$f"
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cd runtime-testsuite; travis_wait 40 ../.travis/run-tests-$TARGET.sh
|
- |
|
||||||
|
cd runtime-testsuite;
|
||||||
|
travis_wait 40 ../.travis/run-tests-$TARGET.sh;
|
||||||
|
rc=$?;
|
||||||
|
cat target/surefire-reports/*.dumpstream || true;
|
||||||
|
exit $rc
|
||||||
|
|
Loading…
Reference in New Issue