Re: [INFO] Gradle build is flaky on Jenkins

2018-02-09 Thread Kenneth Knowles
Separately, we have many tests that seem to have been passing by luck and Gradle exposes some of their weaknesses by its increased parallelism. They are filed under the "flake" and later the "sickbay" tags. I've put together a saved search: https://issues.apache.org/jira/issues/?filter=12343195

Re: [INFO] Gradle build is flaky on Jenkins

2018-02-09 Thread Kenneth Knowles
I have been hitting these issues and investigating them. - HCatalog pentaho dependency: https://issues.apache.org/jira/browse/BEAM-3621 - We rerun way way more than we need to: https://issues.apache.org/jira/browse/BEAM-3253 but dependency stuff occurs during config, not tasks, I think The

Re: [INFO] Gradle build is flaky on Jenkins

2018-02-09 Thread Jean-Baptiste Onofré
Hi Romain, that's actually part of my investigations ;) Regards JB On 02/09/2018 02:26 PM, Romain Manni-Bucau wrote: > did you check the concurrency? For me it is plain wrong since it is hardcoded > in > the build file and doesnt let me or the tool customize it. This means it just > blocks my

Re: [INFO] Gradle build is flaky on Jenkins

2018-02-09 Thread Romain Manni-Bucau
did you check the concurrency? For me it is plain wrong since it is hardcoded in the build file and doesnt let me or the tool customize it. This means it just blocks my computer in general and makes some timeout related tests fail easily. (this kind of config should always be customized on the CI

Re: [INFO] Gradle build is flaky on Jenkins

2018-02-09 Thread Aljoscha Krettek
Yes, I was just about to write about this as well. In my recent PRs this always failed for different reasons. Thanks for looking into this! > On 9. Feb 2018, at 11:35, Jean-Baptiste Onofré wrote: > > Hi guys, > > I noticed that the Gradle build on Jenkins is flaky: it

[INFO] Gradle build is flaky on Jenkins

2018-02-09 Thread Jean-Baptiste Onofré
Hi guys, I noticed that the Gradle build on Jenkins is flaky: it almost always fails for different reason (I can't download pentaho artifact sometime, interrupted other times). Jenkins is doing: Jenkins: ./gradlew --continue --rerun-tasks :javaPreCommit I gonna investigate how to improve the