ivankelly closed pull request #1142: Gather disk information before CI build
URL: https://github.com/apache/bookkeeper/pull/1142
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.test-infra/jenkins/job_bookkeeper_precommit_java8.groovy 
b/.test-infra/jenkins/job_bookkeeper_precommit_java8.groovy
index 5b6be305b..82aa4b794 100644
--- a/.test-infra/jenkins/job_bookkeeper_precommit_java8.groovy
+++ b/.test-infra/jenkins/job_bookkeeper_precommit_java8.groovy
@@ -22,6 +22,15 @@ import common_job_properties
 mavenJob('bookkeeper_precommit_pullrequest_java8') {
   description('precommit verification for pull requests of <a 
href="http://bookkeeper.apache.org";>Apache BookKeeper</a> in Java 8.')
 
+  // Temporary information gathering to see if full disks are causing the 
builds to flake
+  preBuildSteps {
+    shell("id")
+    shell("ulimit -a")
+    shell("pwd")
+    shell("df -h")
+    shell("ps aux")
+  }
+
   // Execute concurrent builds if necessary.
   concurrentBuild()
 
diff --git a/.test-infra/jenkins/job_bookkeeper_precommit_java9.groovy 
b/.test-infra/jenkins/job_bookkeeper_precommit_java9.groovy
index d0cea2b2c..ad803beed 100644
--- a/.test-infra/jenkins/job_bookkeeper_precommit_java9.groovy
+++ b/.test-infra/jenkins/job_bookkeeper_precommit_java9.groovy
@@ -22,6 +22,15 @@ import common_job_properties
 mavenJob('bookkeeper_precommit_pullrequest_java9') {
   description('precommit verification for pull requests of <a 
href="http://bookkeeper.apache.org";>Apache BookKeeper</a> in Java 9.')
 
+  // Temporary information gathering to see if full disks are causing the 
builds to flake
+  preBuildSteps {
+    shell("id")
+    shell("ulimit -a")
+    shell("pwd")
+    shell("df -h")
+    shell("ps aux")
+  }
+
   // Execute concurrent builds if necessary.
   concurrentBuild()
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to