Skip to content

Commit f2293bd

Browse files
authored
Adding travis_wait to mvn install
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
1 parent 10a89ec commit f2293bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ jdk:
66
- oraclejdk8
77
- openjdk7
88

9-
install: mvn install -Dgpg.skip=true
9+
#travis_wait : avoid time out
10+
install: travis_wait mvn install -Dgpg.skip=true
1011

1112
sudo: false
1213

0 commit comments

Comments
 (0)