gpt4 book ai didi

git - 哪个Jenkins命令获取更改文件列表

转载 作者:行者123 更新时间:2023-12-01 11:14:37 27 4
gpt4 key购买 nike

在Jenkins构建中,我看到了已更改文件的列表:

enter image description here

因此, 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com