Skip to content

Commit f005d95

Browse files
islishudefjl
andauthored
build: simplify go mod tidy check (#31266)
This changes the go mod tidy check to use the go mod tidy -diff command, removing the custom diffing for go.mod. The check for go.mod/go.sum is now performed in the check_generate action. Also included is a change where check_generate and check_baddeps will now run on the GitHub Actions lint step. --------- Co-authored-by: Felix Lange <[email protected]>
1 parent fa16d49 commit f005d95

File tree

3 files changed

+8
-23
lines changed

3 files changed

+8
-23
lines changed

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Run linters
3030
run: |
3131
go run build/ci.go lint
32-
go run build/ci.go check_tidy
32+
go run build/ci.go check_generate
3333
go run build/ci.go check_baddeps
3434
3535
build:

appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ for:
2424
- image: Ubuntu
2525
build_script:
2626
- go run build/ci.go lint
27-
- go run build/ci.go check_tidy
2827
- go run build/ci.go check_generate
2928
- go run build/ci.go check_baddeps
3029
- go run build/ci.go install -dlgo

build/ci.go

+7-21
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ Usage: go run build/ci.go <command> <command flags/arguments>
2525
Available commands are:
2626
2727
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
3029
check_baddeps -- verifies that certain dependencies are avoided
3130
3231
install [ -arch architecture ] [ -cc compiler ] [ packages... ] -- builds packages and executables
@@ -155,8 +154,6 @@ func main() {
155154
doTest(os.Args[2:])
156155
case "lint":
157156
doLint(os.Args[2:])
158-
case "check_tidy":
159-
doCheckTidy()
160157
case "check_generate":
161158
doCheckGenerate()
162159
case "check_baddeps":
@@ -352,29 +349,14 @@ func downloadSpecTestFixtures(csdb *build.ChecksumDB, cachedir string) string {
352349

353350
// doCheckTidy assets that the Go modules files are tidied already.
354351
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.")
371352
}
372353

373354
// doCheckGenerate ensures that re-generating generated files does not cause
374355
// any mutations in the source file tree.
375356
func doCheckGenerate() {
376357
var (
377358
cachedir = flag.String("cachedir", "./build/cache", "directory for caching binaries.")
359+
tc = new(build.GoToolchain)
378360
)
379361
// Compute the origin hashes of all the files
380362
var hashes map[string][32]byte
@@ -389,7 +371,7 @@ func doCheckGenerate() {
389371
protocPath = downloadProtoc(*cachedir)
390372
protocGenGoPath = downloadProtocGenGo(*cachedir)
391373
)
392-
c := new(build.GoToolchain).Go("generate", "./...")
374+
c := tc.Go("generate", "./...")
393375
pathList := []string{filepath.Join(protocPath, "bin"), protocGenGoPath, os.Getenv("PATH")}
394376
c.Env = append(c.Env, "PATH="+strings.Join(pathList, string(os.PathListSeparator)))
395377
build.MustRun(c)
@@ -407,6 +389,10 @@ func doCheckGenerate() {
407389
log.Fatal("One or more generated files were updated by running 'go generate ./...'")
408390
}
409391
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.")
410396
}
411397

412398
// doCheckBadDeps verifies whether certain unintended dependencies between some

0 commit comments

Comments
 (0)