Is there any way to read variable/parameters from bamboo during runtime to know determine during the build of a build plan, how the build plan was triggered.
Was the trigger according to schedule? Or due to code change in repository.
We are using cake build, with powershell boostrapper, and would like to make decision in the build file based on this input.
Hi @Henrik Eriksson ,
If the "during runtime" you are referring to relates to whilst the build is running, I am afraid you will not be able to gather this information from outside the build. When running a build, Bamboo creates a child process from its actual process, preventing you from doing changes and retrieving information from external location.
You could run a REST API call against:
Or simply run a SQL statement against buildresultsummary table.
Kind regards,
Rafael
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.