-
-
Save wparad/0667b75cc4353e1f0325 to your computer and use it in GitHub Desktop.
Remotely trigger/queue a Bamboo build from command line via the Rest API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable progress bars created by Invoke-RestMethod which internally uses Write-Progress) | |
$progressPreference = 'silentlyContinue' | |
$url = 'http://bamboohost:8085/' | |
$apiUrl = $url + "rest/api/latest/" | |
$project = 'ZZ-ZZZ' | |
$queueUrl = ("{0}queue/{1}" -f $apiUrl, $project) | |
$username='username' | |
$password='password' | |
# Build basic auth values | |
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $username, $password))) | |
# Queue the build | |
$result = Invoke-RestMethod -Method Post -Headers @{Authorization=("Basic {0}" -f $base64AuthInfo)} $queueUrl | |
$buildUrl = $url + "browse/" + $result.restQueuedBuild.buildResultKey | |
Write-Host ("Build number {0} queued successfully, see {1}" -f $result.restQueuedBuild.buildNumber, $buildUrl) | |
# Poll the build status until complete or timeout | |
$time = 0 | |
$refreshInterval = 5 | |
$timeout = 120 | |
$prevStatus = "" | |
while(1){ | |
$status = Invoke-RestMethod $result.restQueuedBuild.link.href | |
if($status.result.lifeCycleState -eq 'Finished'){ | |
break; | |
} | |
if($status.result.lifeCycleState -ne $prevStatus){ | |
Write-Host ("Build is {0}" -f $status.result.lifeCycleState) | |
$prevStatus = $status.result.lifeCycleState | |
} | |
if($time -ge $timeout) | |
{ | |
Write-Host "Timeout exceeded..." -foregroundcolor "red" | |
break; | |
} | |
Start-Sleep -s $refreshInterval | |
$time += $refreshInterval | |
} | |
$fgcol = 'red' | |
if($status.result.state -eq 'Successful'){ | |
$fgcol='green' | |
} | |
Write-Host ("Build is {0}, outcome is {1}" -f $status.result.lifeCycleState, $status.result.state) -foregroundcolor $fgcol | |
Write-Host ("See {0} for details" -f $buildUrl) -foregroundcolor $fgcol | |
# Re-enable progress bars | |
$progressPreference = 'Continue' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment