Skip to content

Commit e8d11a5

Browse files
Revert report ordering
1 parent 6508b75 commit e8d11a5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

utils/build.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -658,12 +658,12 @@ function Flatten-TimingEntry {
658658
$FormattedSelfTime = "{0:hh\:mm\:ss\.ff}" -f $SelfTime
659659

660660
[PSCustomObject]@{
661-
"Total Time" = $FormattedTime
662-
"Self Time" = $FormattedSelfTime
663-
"%" = "$Percentage%"
664661
"Build Step" = "$Indent$($Entry.'Build Step')"
665662
Platform = $Entry.Platform
666663
Arch = $Entry.Arch
664+
"Total Time" = $FormattedTime
665+
"Self Time" = $FormattedSelfTime
666+
"%" = "$Percentage%"
667667
}
668668

669669
$SortedChildren = $Entry.Children | Sort-Object -Descending -Property "Elapsed Time"
@@ -694,12 +694,12 @@ function Write-Summary {
694694

695695
$FormattedTotalTime = "{0:hh\:mm\:ss\.ff}" -f $TotalTime
696696
$TotalRow = [PSCustomObject]@{
697-
"Total Time" = $FormattedTotalTime
698-
"Self Time" = $FormattedTotalTime
699-
"%" = "100.0%"
700697
"Build Step" = "TOTAL"
701698
Platform = ""
702699
Arch = ""
700+
"Total Time" = $FormattedTotalTime
701+
"Self Time" = $FormattedTotalTime
702+
"%" = "100.0%"
703703
}
704704

705705
@($Result) + $TotalRow | Format-Table -AutoSize

0 commit comments

Comments
 (0)