我正在研究如何在项目的scm中使用新的Jenkins管道插件和Jenkinsfile
(我们使用GIT)。
作业脚本从SCM加载(“来自SCM的管道脚本”选项)
在Jenkinsfile
脚本中,我执行checkout scm
。
问题是提交是重复的。在构建目录中,有2个changelog.xml
具有相同的提交,因此更改视图可能非常混乱:
Summary
1. FNC71010 - Ajout des traductions au launcher (details)
Commit 5a676ee1448b72f1b99227e8832b01081aa1bc6d by thierry
The file was modified Deploy_serveur/resources/config/trad.properties
Summary
1.FNC71010 - Ajout des traductions au launcher (details)
Commit 5a676ee1448b72f1b99227e8832b01081aa1bc6d by thierry
The file was modified Deploy_serveur/resources/config/trad.properties
在multibranch管道中也会出现问题。
以下是Jenkinsfile
内容:
#!groovy
node {
stage 'initialisation'
def repertoire = "directory"
def pipeline
dir(repertoire) {
checkout scm
pipeline = load 'pipeline.groovy'
}
pipeline.initialisation(repertoire)
pipeline.build()
pipeline.runTestsRapides()
pipeline.copieResultats()
}
我做错了吗?
Jenkins版本:1.642.2(docker) 管道版本:1.15 Git插件:2.4.3
答案 0 :(得分:2)
您是否尝试将Git插件升级到2.4.4?