如何在管道Jenkins工作中为artefact添加指纹? 我添加了所需的插件并使用documentation中描述的参数。
withMaven(options: [artifactsPublisher(disabled: false), dependenciesFingerprintPublisher(disabled: false)])
答案 0 :(得分:3)
我找到了答案。 指纹由特殊命令
完成step([$class: 'ArtifactArchiver', artifacts: '**/*.jar', fingerprint: true])
建议在专门的步骤中完成,这就是我所做的:
stage('arch') {
step([$class: 'ArtifactArchiver', artifacts: '**/*.jar', fingerprint: true])
}
可以找到更多详细信息here