Created
December 1, 2017 03:33
-
-
Save IlyaFinkelshteyn/dc0b08593cb0babff2bd84dd05c4ee42 to your computer and use it in GitHub Desktop.
This file contains 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
if ($env:APPVEYOR_JOB_NUMBER -ne 1) {return} | |
write-host "Waiting for other jobs to complete" | |
$headers = @{ | |
"Authorization" = "Bearer $ApiKey" | |
"Content-type" = "application/json" | |
} | |
[datetime]$stop = ([datetime]::Now).AddMinutes($env:TimeOutMins) | |
[bool]$success = $false | |
while(!$success -and ([datetime]::Now) -lt $stop) { | |
$project = Invoke-RestMethod -Uri "https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG" -Headers $headers -Method GET | |
$success = $true | |
$project.build.jobs | foreach-object {if (($_.jobId -ne $env:APPVEYOR_JOB_ID) -and ($_.status -ne "success")) {$success = $false}; $_.jobId; $_.status} | |
if (!$success) {Start-sleep 5} | |
} | |
if (!$success) {throw "Test jobs were not finished in $env:TimeOutMins minutes"} |
lipkau
commented
Jan 31, 2018
•
How would I use this to make a deploy step conditional in the YML?
Would I make it set an environment variable of some sort, and make the deploy conditional on the environment variable?
Could you show me an example?
@jezzsantos sorry missed this question. Please check conditional deployment
This doesn't work if you've got two builds running at the same time. Only the most recent build is ever returned. So, it doesn't work if you're doing a branch build and a PR build at the same time.
I would expect the https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG
endpoint to return all running builds, but it only returns the one with the highest build number. :(
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment