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
The following commit(s) were added to refs/heads/integration-tests by this push:
new f9eae26 HOP-2212
f9eae26 is described below
commit f9eae26cfacf4fcd07b5a939a487c1e076de0ff2
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"
}
}