Hi @Bharath,
We have two options for stages considering the way the are triggered:
You can achieve your goal by configuring some of the stages to be manual and others to be automatic, in order to match your needs.
(i) Stages are run in sequence, so they cannot be skipped unless they are disabled.
From the UI
Any time a build plan is triggered all automatic stages will be run until a manual stage is reached. Once the build is partially run you will be able to trigger manual stages through "Run customised" option or by clicking the play button on them.
From REST
Some options to trigger them:
Creating a new build (POST), running all stages (automatic and manual ones):
curl --user <USER>:<PASS> -X POST <BAM_URL>/rest/api/latest/queue/PROJ-PLAN?executeAllStages=true
Creating a new build (POST), running the manual stage 'manualstage2' but only after all preceding stages are run (either automatic or manual ones):
curl --user <USER>:<PASS> -X POST <BAM_URL>/rest/api/latest/queue/PROJ-PLAN?stage='manualstage2'
Resuming the build 10 (PUT), with automatic stages already run and some pending manual stages:
curl --user <USER>:<PASS> -X PUT <BAM_URL>/rest/api/latest/queue/PROJ-PLAN-10?stage='manualstage3'
I hope that helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.