Per Group Step | Buildkite Documentation The example shows:
steps: - group: "111" depends_on: "tests" steps: - command: "a.sh" - wait - command: "b.sh"
To be in line with the rest of the buildkite pipelines, can support for commands be added and not just command ?
commands
command
Expected:
steps: - group: "111" depends_on: "tests" steps: - commands: - "a.sh" - wait - "b.sh"
Hey @chomey!
When you specify commands, all the commands will run as part of a single job, it’s a shortcut for a script containing the commands. Group step can group together any jobs that the user wants to group logically and it does not support sub-groups.
Best!
Hey!
Some news about this This should work as you expected:
steps: - group: steps: - commands: - echo "1" - echo "2" - echo "3"
The wait inside commands is ignored.
wait