当我在Jenkins中创建maven构建并运行它时,我将看到所有构建的子模块(及其状态)。
使用管道脚本Jenkinsfile时如何实现?有插件吗?
答案 0 :(得分:0)
您需要运行其他步骤来归档结果。尝试类似的代码:
node {
git url: 'https://github.com/joe_user/simple-maven-project-with-tests.git'
def mvnHome = tool 'M3'
sh "${mvnHome}/bin/mvn -B -Dmaven.test.failure.ignore verify"
step([$class: 'ArtifactArchiver', artifacts: '**/target/*.jar', fingerprint: true])
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
}
ArtifactArchiver有简短版本:
archive '**/target/*.jar'