This is an automated email from the ASF dual-hosted git repository.
altay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 70bc5cf Disable filesystem watching in Jenkins
new 4b86905 Merge pull request #14750 from TheNeuralBit/no-watch-jenkins
70bc5cf is described below
commit 70bc5cf4488a2b104bbcc7eee55857d28e2b4db2
Author: Brian Hulette <[email protected]>
AuthorDate: Thu May 6 17:49:36 2021 -0700
Disable filesystem watching in Jenkins
---
.test-infra/jenkins/CommonJobProperties.groovy | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.test-infra/jenkins/CommonJobProperties.groovy
b/.test-infra/jenkins/CommonJobProperties.groovy
index 851fc0b..295cc89 100644
--- a/.test-infra/jenkins/CommonJobProperties.groovy
+++ b/.test-infra/jenkins/CommonJobProperties.groovy
@@ -183,6 +183,11 @@ class CommonJobProperties {
context.switches("-Dorg.gradle.jvmargs=-Xms2g")
context.switches("-Dorg.gradle.jvmargs=-Xmx4g")
+ // Disable file system watching for CI builds
+ // Builds are performed on a clean clone and files aren't modified, so
+ // there's no value in watching for changes.
+ context.switches("-Dorg.gradle.vfs.watch=false")
+
// Include dependency licenses when build docker images on Jenkins, see
https://s.apache.org/zt68q
context.switches("-Pdocker-pull-licenses")
}