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 <[email protected]> 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" } }
