Ошибка все еще существует, но мне удалось обойти ее, удалив описание BooleanParameterDefinition
. Итак, мой окончательный код выглядит так:
job('ci') {
description 'Build and test the app.'
scm {
github 'sheehan/job-dsl-playground'
}
steps {
gradle 'test'
}
publishers {
archiveJunit 'build/test-results/**/*.xml'
}
configure { project ->
project / 'properties' / 'hudson.model.ParametersDefinitionProperty' {
'parameterDefinitions' {
'hudson.model.BooleanParameterDefinition' {
name('my-param')
defaultValue(true)
}
}
}
}
}