Skip to content

Commit

Permalink
Adding travis_wait to mvn install
Browse files Browse the repository at this point in the history
Why ?
Building such big APIs as Adyen APIs   can take a lot of time.  It's possible to get a time out.
Here (4hwc/4HWCAutonomousCar@96c6396), I got a time out due to generating javadoc. Then, I decided to add travis_wait and it works pretty well.

Official docs : https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received
  • Loading branch information
FanJups authored Dec 23, 2019
1 parent 10a89ec commit f2293bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jdk:
- oraclejdk8
- openjdk7

install: mvn install -Dgpg.skip=true
#travis_wait : avoid time out
install: travis_wait mvn install -Dgpg.skip=true

sudo: false

Expand Down

0 comments on commit f2293bd

Please sign in to comment.