You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2018/10/26 13:51:02 UTC

[accumulo] branch master updated: Adjust travis timeout for build output

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new b836168  Adjust travis timeout for build output
b836168 is described below

commit b836168091c27c65b933cc5ddf2c12ca08f6c312
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Fri Oct 26 09:47:48 2018 -0400

    Adjust travis timeout for build output
    
    * Update spotbugs to latest 3.1.7
    * Adjust timeout settings in Travis CI so that it doesn't timeout when
    the build doesn't print something to the console within 10 minutes. The
    new setting is 20 minutes. This gives spotbugs, when run with the
    findsecbugs plugin, more time to analyze the code for security bugs,
    which would otherwise timeout frequently on our large core module.
---
 .travis.yml | 2 +-
 pom.xml     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index f0a7c97..c1f9a7f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,4 +30,4 @@ env:
   - BUILD_ARGS="clean verify -PskipQA,sec-bugs -Dspotbugs.skip=false"  # check for spotbugs+security
   - BUILD_ARGS="clean compile -Dhadoop.version=3.0.3 -Dzookeeper.version=3.4.12"  # quick compile to verify older API
 script:
-  - mvn $BUILD_ARGS
+  - travis_wait 20 mvn $BUILD_ARGS
diff --git a/pom.xml b/pom.xml
index 49cce61..995ed78 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,7 +142,7 @@
     <servlet.api.version>3.1.0</servlet.api.version>
     <slf4j.version>1.7.25</slf4j.version>
     <sourceReleaseAssemblyDescriptor>source-release-tar</sourceReleaseAssemblyDescriptor>
-    <spotbugs.version>3.1.6</spotbugs.version>
+    <spotbugs.version>3.1.7</spotbugs.version>
     <surefire.excludedGroups />
     <surefire.failIfNoSpecifiedTests>false</surefire.failIfNoSpecifiedTests>
     <surefire.groups />