mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
log $jobs better
This commit is contained in:
parent
a7012c27ab
commit
bdb9109561
@ -162,7 +162,11 @@ on_finish:
|
|||||||
$jobs = $buildData.build.jobs
|
$jobs = $buildData.build.jobs
|
||||||
$lastJob = ($jobs | Select-Object -Last 1)
|
$lastJob = ($jobs | Select-Object -Last 1)
|
||||||
|
|
||||||
Write-Host $jobs
|
Write-Host "Jobs:"
|
||||||
|
$jobs | Foreach-Object {
|
||||||
|
Write-Host " - $($_)"
|
||||||
|
}
|
||||||
|
|
||||||
Write-Host "Current job: $($env:APPVEYOR_JOB_ID)"
|
Write-Host "Current job: $($env:APPVEYOR_JOB_ID)"
|
||||||
Write-Host "Last job: $($lastJob)"
|
Write-Host "Last job: $($lastJob)"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user