You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2019/09/12 07:23:29 UTC

[commons-text] branch master updated: Do not run spotbugs twice on Travis CI. Spotbugs is already executed in the main build, do not run it again in the "after_success" part.

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

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
     new b3bffa2  Do not run spotbugs twice on Travis CI. Spotbugs is already executed in the main build, do not run it again in the "after_success" part.
b3bffa2 is described below

commit b3bffa2b832d5a91a6ec5df1b8f42382cc6c421f
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Thu Sep 12 09:21:58 2019 +0200

    Do not run spotbugs twice on Travis CI. Spotbugs is already executed in the main build, do not run it again in the "after_success" part.
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index c419c93..1e3de86 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,4 +30,4 @@ script:
   - mvn
 
 after_success:
-  - mvn clean test spotbugs:check jacoco:report coveralls:report -Ptravis-jacoco
+  - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco