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

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


The following commit(s) were added to refs/heads/master by this push:
     new c0a3be9fd Uses two step build process on Travis similar to Jenkins 
pipeline
c0a3be9fd is described below

commit c0a3be9fd85ffbe9373e82481b6eb6963ff59e26
Author: Lukasz Lenart <lukaszlen...@apache.org>
AuthorDate: Tue May 10 07:41:34 2022 +0200

    Uses two step build process on Travis similar to Jenkins pipeline
---
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 73addc767..5fb7347f5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,7 +18,8 @@ matrix:
 
 script:
    - if [ "$STRUTS_IT" == "true" ]; then
-      ./mvnw clean package verify org.jacoco:jacoco-maven-plugin:report 
org.jacoco:jacoco-maven-plugin:report-integration 
org.eluder.coveralls:coveralls-maven-plugin:report -Ptravis-coveralls 
-DskipAssembly -B;
+      ./mvnw clean install -DskipTests -DskipAssembly -B;
+      ./mvnw test org.jacoco:jacoco-maven-plugin:report 
org.jacoco:jacoco-maven-plugin:report-integration 
org.eluder.coveralls:coveralls-maven-plugin:report -Ptravis-coveralls 
-DskipAssembly -B;
     else
       ./mvnw clean package test -DskipAssembly -B;
     fi;

Reply via email to