You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2020/06/01 10:35:13 UTC

[maven] 26/29: test non embedded

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

olamy pushed a commit to branch it_runs
in repository https://gitbox.apache.org/repos/asf/maven.git

commit f162ed14aa933fc591f02c08a99655c8cbd5d449
Author: olivier lamy <ol...@apache.org>
AuthorDate: Mon Jun 1 20:05:06 2020 +1000

    test non embedded
    
    Signed-off-by: olivier lamy <ol...@apache.org>
---
 Jenkinsfile.its | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.its b/Jenkinsfile.its
index caeaf26..b12edf4 100644
--- a/Jenkinsfile.its
+++ b/Jenkinsfile.its
@@ -24,7 +24,8 @@ pipeline {
 //        unstash name: 'mavenWrapper'
         sh "ls -lrt ${env.WORKSPACE}/apache-maven/target/"
         withEnv(["JAVA_HOME=${ tool "JDK 1.8 (latest)" }", "PATH+MAVEN=${tool 'Maven 3.6.3'}/bin:${env.JAVA_HOME}/bin"]) {
-          sh "mvn clean -T2 install -V -B -Prun-its,embedded -Dmaven.test.failure.ignore=true -Dmaven.repo.local=${env.WORKSPACE}/repo  -DmavenDistro=${env.WORKSPACE}/apache-maven/target/apache-maven-bin.zip -DwrapperDistroDir=${env.WORKSPACE}/apache-maven/target -DmavenWrapper=${env.WORKSPACE}/maven-wrapper/target/maven-wrapper.jar"
+          //embedded fastest
+          sh "mvn clean -T2 install -V -B -Prun-its -Dmaven.test.failure.ignore=true -Dmaven.repo.local=${env.WORKSPACE}/repo  -DmavenDistro=${env.WORKSPACE}/apache-maven/target/apache-maven-bin.zip -DwrapperDistroDir=${env.WORKSPACE}/apache-maven/target -DmavenWrapper=${env.WORKSPACE}/maven-wrapper/target/maven-wrapper.jar"
         }
       }
     }