I know it is used in build.go.cd itself, but I think you should open an issue on the repo and ask.
laser`
Okay, thanks
ShotgunKlaus joined the channel
bamdad joined the channel
Is it possible for a downstream pipeline to be triggered by an upstream pipeline with a parameter from an artifact?
e.g., our deployment system accepts a package which is built from something, and then when you want to progress deployments through environments, you have to use the ID that the deployment system gives you when you submit the package
So our pipeline would look a bit like that: build package -> submit to deployment system (get reference number) -> deploy to integration (using reference number from previous stage) -> run QA automation and mark package as good/bad in deployment system (using same ID)
arvindsv
You could write the ID to a file and publish it as an artifact. The downstream pipeline can fetch that artifact and use the ID from it.