This is an automated email from the ASF dual-hosted git repository.
nkak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/madlib.git
The following commit(s) were added to refs/heads/master by this push:
new 8d97eab Jenkins: Add junit step for reporting failures
8d97eab is described below
commit 8d97eab4ed6a13ab52cff3d55f6e9b2b8addedc2
Author: Nikhil Kak <[email protected]>
AuthorDate: Thu Feb 18 16:31:53 2021 -0800
Jenkins: Add junit step for reporting failures
JIRA: MADLIB-1466
Co-authored-by: Ekta Khanna <[email protected]>
---
Jenkinsfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 1cdcbb7..aa82da9 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -30,7 +30,7 @@ pipeline {
stage('Ratcheck') {
steps {
echo 'Running rat check tests'
- sh "mvn apache-rat:check"
+ sh 'mvn apache-rat:check'
sh './tool/jenkins/rat_check.sh'
}
}
@@ -38,6 +38,7 @@ pipeline {
steps {
echo 'Building src and running dev-check and
unit tests'
sh './tool/jenkins/jenkins_build.sh'
+ junit 'logs/madlib_dev_check.xml'
}
}
}