You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/07/22 17:04:02 UTC

[commons-rng] 01/03: Run the default Maven goal.

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

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

commit dfae53e0e13f5e01640be51a9d71ac50ece01afa
Author: aherbert <ah...@apache.org>
AuthorDate: Mon Jul 22 13:28:12 2019 +0100

    Run the default Maven goal.
    
    This adds the following goals to the previous config:
    
    - apache-rat:check
    - javadoc:javadoc
    
    The build does not require a prior install step so this has been skipped.
    
    After success submit the coverage report.
---
 .travis.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 828b712..476d8e3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,5 +21,12 @@ jdk:
   - openjdk8
   - oraclejdk9
 
+# Skip the installation step:
+#   https://docs.travis-ci.com/user/job-lifecycle/#skipping-the-installation-phase
+install: true
+
+script:
+  - mvn
+
 after_success:
-  - mvn clean test pmd:check spotbugs:check checkstyle:check jacoco:report coveralls:report
+  - mvn jacoco:report coveralls:report