Jenkinsfile: add debug stage

This commit is contained in:
Martin Weinelt 2020-05-03 23:04:50 +02:00
parent d1dd82cc85
commit 94093f42fa
No known key found for this signature in database
GPG Key ID: BD4AA0528F63F17E

View File

@ -76,6 +76,20 @@ pipeline {
sh 'make -C docs html' sh 'make -C docs html'
} }
} }
stage('debug') {
agent { label "gluon-docker-v2" }
steps {
script {
for (changeLogSet in currentBuild.changeSets) {
for (entry in changeLogSet.getItems()) {
for (file in entry.getAffectedFiles()) {
println("${file.getPath()} modified")
}
}
}
}
}
}
stage('build') { stage('build') {
agent { label "gluon-docker-v2" } agent { label "gluon-docker-v2" }
steps { steps {