Jenkinsfile: add debug stage
This commit is contained in:
parent
d1dd82cc85
commit
94093f42fa
14
contrib/ci/Jenkinsfile
vendored
14
contrib/ci/Jenkinsfile
vendored
@ -76,6 +76,20 @@ pipeline {
|
||||
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') {
|
||||
agent { label "gluon-docker-v2" }
|
||||
steps {
|
||||
|
Loading…
Reference in New Issue
Block a user