Bamboo

Out of the box support

The Bamboo alias, which returns an IBambooProvider instance can be used to interact with the Atlassian Bamboo environment.

The following example prints the build number if running on Atlassian Bamboo:

if (BuildSystem.Bamboo.IsRunningOnBamboo)
{
    Information(BuildSystem.Bamboo.Environment.Build.Number);
}
else
{
    Information("Not running on Atlassian Bamboo");
}

See IBambooProvider for details and available methods to interact with Atlassian Bamboo.

Available 3rd party extensions

No extensions found