@@ -25,8 +25,7 @@ Usage: go run build/ci.go <command> <command flags/arguments>
25
25
Available commands are:
26
26
27
27
lint -- runs certain pre-selected linters
28
- check_tidy -- verifies that everything is 'go mod tidy'-ed
29
- check_generate -- verifies that everything is 'go generate'-ed
28
+ check_generate -- verifies that 'go generate' and 'go mod tidy' do not produce changes
30
29
check_baddeps -- verifies that certain dependencies are avoided
31
30
32
31
install [ -arch architecture ] [ -cc compiler ] [ packages... ] -- builds packages and executables
@@ -155,8 +154,6 @@ func main() {
155
154
doTest (os .Args [2 :])
156
155
case "lint" :
157
156
doLint (os .Args [2 :])
158
- case "check_tidy" :
159
- doCheckTidy ()
160
157
case "check_generate" :
161
158
doCheckGenerate ()
162
159
case "check_baddeps" :
@@ -352,29 +349,14 @@ func downloadSpecTestFixtures(csdb *build.ChecksumDB, cachedir string) string {
352
349
353
350
// doCheckTidy assets that the Go modules files are tidied already.
354
351
func doCheckTidy () {
355
- targets := []string {"go.mod" , "go.sum" }
356
-
357
- hashes , err := build .HashFiles (targets )
358
- if err != nil {
359
- log .Fatalf ("failed to hash go.mod/go.sum: %v" , err )
360
- }
361
- build .MustRun (new (build.GoToolchain ).Go ("mod" , "tidy" ))
362
-
363
- tidied , err := build .HashFiles (targets )
364
- if err != nil {
365
- log .Fatalf ("failed to rehash go.mod/go.sum: %v" , err )
366
- }
367
- if updates := build .DiffHashes (hashes , tidied ); len (updates ) > 0 {
368
- log .Fatalf ("files changed on running 'go mod tidy': %v" , updates )
369
- }
370
- fmt .Println ("No untidy module files detected." )
371
352
}
372
353
373
354
// doCheckGenerate ensures that re-generating generated files does not cause
374
355
// any mutations in the source file tree.
375
356
func doCheckGenerate () {
376
357
var (
377
358
cachedir = flag .String ("cachedir" , "./build/cache" , "directory for caching binaries." )
359
+ tc = new (build.GoToolchain )
378
360
)
379
361
// Compute the origin hashes of all the files
380
362
var hashes map [string ][32 ]byte
@@ -389,7 +371,7 @@ func doCheckGenerate() {
389
371
protocPath = downloadProtoc (* cachedir )
390
372
protocGenGoPath = downloadProtocGenGo (* cachedir )
391
373
)
392
- c := new (build. GoToolchain ) .Go ("generate" , "./..." )
374
+ c := tc .Go ("generate" , "./..." )
393
375
pathList := []string {filepath .Join (protocPath , "bin" ), protocGenGoPath , os .Getenv ("PATH" )}
394
376
c .Env = append (c .Env , "PATH=" + strings .Join (pathList , string (os .PathListSeparator )))
395
377
build .MustRun (c )
@@ -407,6 +389,10 @@ func doCheckGenerate() {
407
389
log .Fatal ("One or more generated files were updated by running 'go generate ./...'" )
408
390
}
409
391
fmt .Println ("No stale files detected." )
392
+
393
+ // Run go mod tidy check.
394
+ build .MustRun (tc .Go ("mod" , "tidy" , "-diff" ))
395
+ fmt .Println ("No untidy module files detected." )
410
396
}
411
397
412
398
// doCheckBadDeps verifies whether certain unintended dependencies between some
0 commit comments