Have defined parameter for my pipeline projects in the main pipeline script:
properties([[$class: 'ParametersDefinitionProperty', parameterDefinitions: [[$class: 'BooleanParameterDefinition', defaultValue: false, description: 'Description', name: 'PROP_VERIFY']]]])
After building the first time with this I get the option "Build with Parameters".
Doesn't matter how I start a new build. Either manually or in the script:
build job: '../projectA/master', parameters: [[$class: 'BooleanParameterValue', name: 'PROP_VERIFY', value: true]]
The environment variable env.PROP_VERIFY is not available. It it always null.
After building I am checking the following URL and can se that the parameter is set: