-
Bug
-
Resolution: Unresolved
-
Major
-
jenkins: 2.0
pipeline: Build Step:2.1
Pipeline: Groovy:2.8
Pipeline: REST API Plugin:1.5
Pipeline: Stage View Plugin:1.5
Pipeline: Supporting APIs:2.1
Hello,
In pipeline job i can not trigger another job with MatrixCombinationsParameter!
In my pipeline job, i trigger another job with "MatrixCombinationsParameter".
I find nothing in wiki and when I use the "Pipeline Syntax" it shows me the following warning:
paramFilter
Not applicable. Only applicable to multi-configuration projects.
Select matrix combinations
------------------------JENKINSFILE---------------------------------
stage "test "
build job: 'Tests/test_func',
parameters: [
[$class: 'StringParameterValue', name: 'default_timeout', value: '30000'],
[$class: 'StringParameterValue', name: 'git_ref', value: 'xxxx'],
[$class: 'BooleanParameterValue', name: 'sof', value: true],
[$class: 'BooleanParameterValue', name: 'fastkill', value: false],
[$class: 'MatrixCombinationsParameterValue', name: paramFilter', value:'env_name=="int"']
],
propagate: true,
wait: true