I am trying to make use of YAML anchors, with different stages, and parallel steps in each stage (not parallel stages).
I have something like the following setup, but it does not seem to work and I want to know if what I am trying to do is supported:
pipelines:
custom:
Test Pipeline:
- stage:
name: Do multiple things
deployment: development
steps:
- step: *step1
- step: *step2
parallel:
- step: *pStep1
- step: *pStep2
- step: *pStep3
@Nate Loiselle Generally speaking, YAML anchors are supported to eliminate repeating blocks in the YAML.
Have a look at the official doc, it should help: https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.