-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: pipeline-utility-steps-plugin
The pipeline step "readYaml" is currently unable to read nested properties that are splitted to different parts of the file, such as :
context:
 my:
  variable: value
context:Â {{Â }}
 a:{{  }}
  second-variable: value2
The workaround is to factorize these nested variables under their common root like this :
context:Â {{Â }}
 my:  {{  }}
  variable: value{{ }}
{{Â a: }}
  second-variable: value2
However the first syntax is a correct Yaml syntax and should be supported by the parser