You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -760,6 +763,15 @@ function Build-CMakeProject {
760
763
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Finished building '$Src' to '$Bin' for arch '$($Arch.ShortName)' in $($Stopwatch.Elapsed)"
761
764
Write-Host""
762
765
}
766
+
767
+
if ($Summary) {
768
+
$TimingData.Add([PSCustomObject]@{
769
+
Arch=$Arch.ShortName
770
+
Checkout=$Src
771
+
BuildID=Split-Path-Path $Bin-Leaf
772
+
"Elapsed Time"=$Stopwatch.Elapsed.ToString()
773
+
})
774
+
}
763
775
}
764
776
765
777
functionBuild-SPMProject {
@@ -811,6 +823,15 @@ function Build-SPMProject {
811
823
Write-Host-ForegroundColor Cyan "[$([DateTime]::Now.ToString("yyyy-MM-dd HH:mm:ss"))] Finished building '$Src' to '$Bin' for arch '$($Arch.ShortName)' in $($Stopwatch.Elapsed)"
0 commit comments