Re: [go-nuts] Re: Why is go vet slow

2024-10-01 Thread Rob Pike
Try this go list ./... | sed 's/.*/echo &; time go vet & /' | sh -rob -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com.

[go-nuts] Re: Why is go vet slow

2024-10-01 Thread Kevin Chowski
Have you tried running it under strace or another tool which gives you insights about a running program?? On Monday, September 30, 2024 at 1:48:53 PM UTC-6 Amnon wrote: > go vet ./... has recently become very slow on my company's code-base > taking 20s to complete. > > Is there an easy way I can

[go-nuts] Re: Why is go vet slow

2024-10-01 Thread Marcello H
Perhaps you can do each check separately, that go vet does to find out if there's a particular check that is slow. Op maandag 30 september 2024 om 21:48:53 UTC+2 schreef Amnon: > go vet ./... has recently become very slow on my company's code-base > taking 20s to complete. > > Is there an easy w