How do I pass promped paramters into a build chain
I want to build a build chain which will do the following 3 steps:
Step A: - update git submodules to specific commits and push to a specific branch, the commits and the branch to be pushed are took from prompted parameters
Step B: based on the push to the branch, a docker build to be started
Step C: run ansible, this will need the specific branch parameters but an extra parameters named releaseName.
Now I saw that If I start the build Chain by running the Step C, it will start the Step A, but without loading the parameters I specify at the prompted of the Step C. Is there any way how to do that ?
Please sign in to leave a comment.
You may override the parameters of dependency builds from your head build as described here: https://www.jetbrains.com/help/teamcity/predefined-build-parameters.html#Overriding+Dependency+Parameters.
Please let me know if this helps.