Is it possible to get a list of changed files in the Jenkinsfile during a pull request build? I am currently doing this...
def changeLogSets = currentBuild.rawBuild.changeSets
for (int i = 0; i < changeLogSets.size(); i++) {
def entries = changeLogSets[i].items
for (int j = 0; j < entries.length; j++) {
def entry = entries[j]
def files = new ArrayList(entry.affectedFiles)
for (int k = 0; k < files.size(); k++) {
def file = files[k]
print file.path
}
}
}
but if I am building a new branch for the very first time this method does not return any changes because there is no previous build to compare to. Has anyone found a solution to this?
Thanks
As far as I know there's no built-in functionality to do this.
Fortunately, you can find that out programmatically:
Now you have a list of changed files in the
git_diff
variable.Using Jenkins changesets is mostly not working, and is reserved for other purposes anyhow.