mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-19 11:00:37 +08:00
* chore: Bump Go to 1.25.1 Update all Go modules to use Go 1.25.1. * Use stable synctest API introduced in Go 1.25 All existing tests that used synctest have had their build constraints removed and have been updated to use synctest.Test instead of synctest.Run. There are still tests in teleport.e that needs to be updated before we can remove GOEXPERIMENT=synctest and retire the synctest build tag. * Remove coverage from go test invocations This is a temporary workaround to https://github.com/golang/go/issues/75031. When the buildboxes have Go 1.25 installed globally this should no longer be an issue and coverage can be restored. * Lazily unmount cgroups Adds the MNT_DETACH flag to the cgroups unmount call to workaround issues stemming from a behavior chagne in Go 1.25 to support automatically setting GOMAXPROCS. In doing so the Go runtime interacts with cgroups to determine what limits should be applied which interferes with our ability to clean up. Fixes https://github.com/gravitational/teleport/issues/58879. * Fix syntest bug with waitgroups ``` === Failed === FAIL: lib/srv/discovery TestDiscoveryServerEKS (unknown) fatal error: sync: WaitGroup.Add called from multiple synctest bubbles ``` The failure stems from a bug in Go 1.25 and is a result of loading aws configs which internally use a sync.WaitGroup. This can be worked around in the short term by mocking out the aws.Config since the test is configured to use a mock eks client anyway. Other tests may still run into this issue until Go 1.25.2 - though our relatively small number of synctest usage at this point may limit our exposure to said bug.