mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
chore: upgrade tailscale to v1.46.1 (#8913)
This commit is contained in:
@ -12,6 +12,8 @@ import (
|
||||
|
||||
"golang.org/x/exp/slices"
|
||||
"golang.org/x/xerrors"
|
||||
|
||||
"github.com/coder/coder/coderd/util/slice"
|
||||
)
|
||||
|
||||
func main() {
|
||||
@ -161,9 +163,8 @@ func parseCIReport(report GotestsumReport) (CIReport, error) {
|
||||
}
|
||||
timeouts = timeoutsNorm
|
||||
|
||||
sortAZ := func(a, b string) bool { return a < b }
|
||||
slices.SortFunc(packagesSortedByName, sortAZ)
|
||||
slices.SortFunc(testSortedByName, sortAZ)
|
||||
slices.SortFunc(packagesSortedByName, slice.Ascending[string])
|
||||
slices.SortFunc(testSortedByName, slice.Ascending[string])
|
||||
|
||||
var rep CIReport
|
||||
|
||||
|
Reference in New Issue
Block a user