-
Notifications
You must be signed in to change notification settings - Fork 41.5k
Closed
Description
Hi there,
I recently submitted a PR (gh-6588) but had the Travis CI tests fail initially (and a few times after that). There didn't appear to be any actual test failures, Travis had just aborted the build since it went more than 10 minutes without generating any output. Eventually I was able to get the tests to pass by opening and closing the PR to get Travis to rerun the tests. It would be great if this wasn't required. As such, I have a few questions about the current Travis configuration.
before_script:
- ./mvnw install -q -U -DskipTests=true -Dmaven.test.redirectTestOutputToFile=true || true
- ./mvnw install -q -U -DskipTests=true -Dmaven.test.redirectTestOutputToFile=true
- Is there any reason the
-q
flag couldn't be removed? This would generate build output and Travis wouldn't kill the builds for running too long. - It seems like the same install command is run twice? I'm not sure why this is done. Perhaps to work around intermittent failures of the first command?
Would people like a PR to remove the -q
flags and possibly the second call to ./mvnw install
?
Thanks
Metadata
Metadata
Assignees
Labels
No labels