-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: rebuild-plugin
-
None
After Jenkins upgrade from 2.263.3 to 2.346.3 plugin rebuild (1.34) has different view, order of HTML elements for build and rebuild action.
I also tested previous version of the plugin: 1.33.1. The same result.
pipeline {
agent any
parameters {
booleanParam(name: 'FOO', description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry.")
booleanParam(name: 'BAR', description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry.")
booleanParam(name: 'LOREM', description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry.")
booleanParam(name: 'IPSUM', description: "Lorem Ipsum is simply dummy text of the printing and typesetting industry.")
}
stages {
stage('Hello') {
steps {
script {
params.each {param ->
println "${param.key} -> ${param.value} "
}
}
}
}
}
}
Build

Rebuild:

Tested on Firefox 104.0.2 and Google Chrome 105.0.5195.102.