在Jenkins构建中,我看到了已更改文件的列表:
因此, Jenkins 使用哪个命令来获取此列表(我正在使用git进行存储库版本控制)。
最佳答案
您可以使用currentBuild全局变量的changeSets属性来获取与检测到的当前版本更改有关的信息。
例如
// returns a list of changed files
@NonCPS
String getChangedFilesList() {
changedFiles = []
for (changeLogSet in currentBuild.changeSets) {
for (entry in changeLogSet.getItems()) { // for each commit in the detected changes
for (file in entry.getAffectedFiles()) {
changedFiles.add(file.getPath()) // add changed file to list
}
}
}
return changedFiles
}
关于git - 哪个Jenkins命令获取更改文件列表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54175878/