Skip to content

Commit

Permalink
fix travis build: The job exceeded the maximum log length, and has be…
Browse files Browse the repository at this point in the history
…en terminated.

The log is filled with "Progress (5): 1.5/2.1 MB | 0.5/1.2 MB | 96/318 kB | 40/187 kB | 0.3/2.0 MB"

This is because we turned off the default install of travis in 44a0408, which used -B (= --batch-mode) which disabled these logs

Signed-off-by: Jon Harper <jon.harper87@gmail.com>
  • Loading branch information
jonenst committed Sep 10, 2019
1 parent 44a0408 commit 912fbba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ install: true
# When travis starts using maven > 3.6.1, add -T 2.0C to hopefully speed things up.
# With maven 3.5.2 we can't because we get the exception described in https://issues.apache.org/jira/browse/MNG-6590
script:
- mvn clean verify -Pjacoco coveralls:report
- if [ "$TRAVIS_OS_NAME" = "linux" -a "$TRAVIS_JDK_VERSION" = "oraclejdk8" -a "$TRAVIS_EVENT_TYPE" = "pull_request" -a "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then mvn sonar:sonar; fi
- mvn -B clean verify -Pjacoco coveralls:report
- if [ "$TRAVIS_OS_NAME" = "linux" -a "$TRAVIS_JDK_VERSION" = "oraclejdk8" -a "$TRAVIS_EVENT_TYPE" = "pull_request" -a "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then mvn -B sonar:sonar; fi

before_cache:
- rm -rf $HOME/.m2/repository/com/powsybl

0 comments on commit 912fbba

Please sign in to comment.