You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2020/12/06 15:24:47 UTC

[incubator-hop] 05/22: HOP-2212

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

hansva pushed a commit to branch integration-tests
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git

commit 7178e6fb205e4fcd5348cb458333a85fe10cd0de
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Sat Dec 5 22:54:24 2020 +0100

    HOP-2212
---
 Jenkinsfile.daily | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index 0687bcb..42cc198 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -76,7 +76,7 @@ pipeline {
             }
             steps {
                 echo 'Build & Test'
-                sh "mvn $MAVEN_PARAMS clean install"
+                sh "mvn $MAVEN_PARAMS clean install -DskipTests=true"
             }
         }
         // stage('Code Quality') {
@@ -102,15 +102,14 @@ pipeline {
             }            
             post {
                 always {
-                    junit(testResults: '**/surefire-reports/*.xml', allowEmptyResults: true)
-                    junit(testResults: '**/failsafe-reports/*.xml', allowEmptyResults: true)
+                    junit(testResults: 'integration-tests/**/surefire-reports/*.xml', allowEmptyResults: true)
                 }
             }
         }
         stage('Remove docker image'){
             steps {
-                sh "docker rmi $iamgename:$BUILD_NUMBER"
-                sh "docker rmi $iamgename:latest"
+                sh "docker rmi $imagename:$BUILD_NUMBER"
+                sh "docker rmi $imagename:latest"
             }
         }