You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps should be able to matrix with objects as inputs.
Use case
I have a shared pipeline. It handles communication with various stakeholders via slack, etc, as well as notifying various services that a deploy has happened.
I'd like the users of this pipeline to have the ability to add custom steps in the pipeline. They need parallelism due to potentially long running test suites. My thought was that the user could provide an object as an input to the pipeline and we could do a matrix build across those values.
# [...pipelinerun..]params:
- name: post-dev-validation-stepsvalue:
- name: "always-pass"image: "alpine:3.14"script: "echo Hello from dev validation && exit 0"
- name: "something that takes a long time"image: "ubuntu:20.04"script: "sleep 180"
Feature request
Steps should be able to matrix with objects as inputs.
Use case
I have a shared pipeline. It handles communication with various stakeholders via slack, etc, as well as notifying various services that a deploy has happened.
I'd like the users of this pipeline to have the ability to add custom steps in the pipeline. They need parallelism due to potentially long running test suites. My thought was that the user could provide an object as an input to the pipeline and we could do a matrix build across those values.
An underlying step would look something like..
The text was updated successfully, but these errors were encountered: