appveyor, build, internal: ci.go cleanups, add package dep checker (#30696)
This commit is contained in:
parent
236147bf70
commit
8c73523812
@ -24,7 +24,9 @@ for:
|
|||||||
- image: Ubuntu
|
- image: Ubuntu
|
||||||
build_script:
|
build_script:
|
||||||
- go run build/ci.go lint
|
- go run build/ci.go lint
|
||||||
- go run build/ci.go generate -verify
|
- go run build/ci.go check_tidy
|
||||||
|
- go run build/ci.go check_generate
|
||||||
|
- go run build/ci.go check_baddeps
|
||||||
- go run build/ci.go install -dlgo
|
- go run build/ci.go install -dlgo
|
||||||
test_script:
|
test_script:
|
||||||
- go run build/ci.go test -dlgo -short
|
- go run build/ci.go test -dlgo -short
|
||||||
|
184
build/ci.go
184
build/ci.go
@ -24,9 +24,14 @@ Usage: go run build/ci.go <command> <command flags/arguments>
|
|||||||
|
|
||||||
Available commands are:
|
Available commands are:
|
||||||
|
|
||||||
|
lint -- runs certain pre-selected linters
|
||||||
|
check_tidy -- verifies that everything is 'go mod tidy'-ed
|
||||||
|
check_generate -- verifies that everything is 'go generate'-ed
|
||||||
|
check_baddeps -- verifies that certain dependencies are avoided
|
||||||
|
|
||||||
install [ -arch architecture ] [ -cc compiler ] [ packages... ] -- builds packages and executables
|
install [ -arch architecture ] [ -cc compiler ] [ packages... ] -- builds packages and executables
|
||||||
test [ -coverage ] [ packages... ] -- runs the tests
|
test [ -coverage ] [ packages... ] -- runs the tests
|
||||||
lint -- runs certain pre-selected linters
|
|
||||||
archive [ -arch architecture ] [ -type zip|tar ] [ -signer key-envvar ] [ -signify key-envvar ] [ -upload dest ] -- archives build artifacts
|
archive [ -arch architecture ] [ -type zip|tar ] [ -signer key-envvar ] [ -signify key-envvar ] [ -upload dest ] -- archives build artifacts
|
||||||
importkeys -- imports signing keys from env
|
importkeys -- imports signing keys from env
|
||||||
debsrc [ -signer key-id ] [ -upload dest ] -- creates a debian source package
|
debsrc [ -signer key-id ] [ -upload dest ] -- creates a debian source package
|
||||||
@ -39,11 +44,9 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"crypto/sha256"
|
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
@ -156,6 +159,12 @@ func main() {
|
|||||||
doTest(os.Args[2:])
|
doTest(os.Args[2:])
|
||||||
case "lint":
|
case "lint":
|
||||||
doLint(os.Args[2:])
|
doLint(os.Args[2:])
|
||||||
|
case "check_tidy":
|
||||||
|
doCheckTidy()
|
||||||
|
case "check_generate":
|
||||||
|
doCheckGenerate()
|
||||||
|
case "check_baddeps":
|
||||||
|
doCheckBadDeps()
|
||||||
case "archive":
|
case "archive":
|
||||||
doArchive(os.Args[2:])
|
doArchive(os.Args[2:])
|
||||||
case "dockerx":
|
case "dockerx":
|
||||||
@ -168,8 +177,6 @@ func main() {
|
|||||||
doPurge(os.Args[2:])
|
doPurge(os.Args[2:])
|
||||||
case "sanitycheck":
|
case "sanitycheck":
|
||||||
doSanityCheck()
|
doSanityCheck()
|
||||||
case "generate":
|
|
||||||
doGenerate()
|
|
||||||
default:
|
default:
|
||||||
log.Fatal("unknown command ", os.Args[1])
|
log.Fatal("unknown command ", os.Args[1])
|
||||||
}
|
}
|
||||||
@ -348,130 +355,93 @@ func downloadSpecTestFixtures(csdb *build.ChecksumDB, cachedir string) string {
|
|||||||
return filepath.Join(cachedir, base)
|
return filepath.Join(cachedir, base)
|
||||||
}
|
}
|
||||||
|
|
||||||
// hashAllSourceFiles iterates all files under the top-level project directory
|
// doCheckTidy assets that the Go modules files are tidied already.
|
||||||
// computing the hash of each file (excluding files within the tests
|
func doCheckTidy() {
|
||||||
// subrepo)
|
targets := []string{"go.mod", "go.sum"}
|
||||||
func hashAllSourceFiles() (map[string][32]byte, error) {
|
|
||||||
res := make(map[string][32]byte)
|
hashes, err := build.HashFiles(targets)
|
||||||
err := filepath.WalkDir(".", func(path string, d os.DirEntry, err error) error {
|
|
||||||
if strings.HasPrefix(path, filepath.FromSlash("tests/testdata")) {
|
|
||||||
return filepath.SkipDir
|
|
||||||
}
|
|
||||||
if !d.Type().IsRegular() {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
// open the file and hash it
|
|
||||||
f, err := os.OpenFile(path, os.O_RDONLY, 0666)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
log.Fatalf("failed to hash go.mod/go.sum: %v", err)
|
||||||
}
|
}
|
||||||
hasher := sha256.New()
|
build.MustRun(new(build.GoToolchain).Go("mod", "tidy"))
|
||||||
if _, err := io.Copy(hasher, f); err != nil {
|
|
||||||
return err
|
tidied, err := build.HashFiles(targets)
|
||||||
}
|
|
||||||
res[path] = [32]byte(hasher.Sum(nil))
|
|
||||||
return nil
|
|
||||||
})
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
log.Fatalf("failed to rehash go.mod/go.sum: %v", err)
|
||||||
}
|
}
|
||||||
return res, nil
|
if updates := build.DiffHashes(hashes, tidied); len(updates) > 0 {
|
||||||
|
log.Fatalf("files changed on running 'go mod tidy': %v", updates)
|
||||||
|
}
|
||||||
|
fmt.Println("No untidy module files detected.")
|
||||||
}
|
}
|
||||||
|
|
||||||
// hashSourceFiles iterates the provided set of filepaths (relative to the top-level geth project directory)
|
// doCheckGenerate ensures that re-generating generated files does not cause
|
||||||
// computing the hash of each file.
|
// any mutations in the source file tree.
|
||||||
func hashSourceFiles(files []string) (map[string][32]byte, error) {
|
func doCheckGenerate() {
|
||||||
res := make(map[string][32]byte)
|
|
||||||
for _, filePath := range files {
|
|
||||||
f, err := os.OpenFile(filePath, os.O_RDONLY, 0666)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
hasher := sha256.New()
|
|
||||||
if _, err := io.Copy(hasher, f); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
res[filePath] = [32]byte(hasher.Sum(nil))
|
|
||||||
}
|
|
||||||
return res, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// compareHashedFilesets compares two maps (key is relative file path to top-level geth directory, value is its hash)
|
|
||||||
// and returns the list of file paths whose hashes differed.
|
|
||||||
func compareHashedFilesets(preHashes map[string][32]byte, postHashes map[string][32]byte) []string {
|
|
||||||
updates := []string{}
|
|
||||||
for path, postHash := range postHashes {
|
|
||||||
preHash, ok := preHashes[path]
|
|
||||||
if !ok || preHash != postHash {
|
|
||||||
updates = append(updates, path)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return updates
|
|
||||||
}
|
|
||||||
|
|
||||||
// doGoModTidy runs 'go mod tidy' and asserts that go.sum/go.mod do not change
|
|
||||||
// as a result.
|
|
||||||
func doGoModTidy() {
|
|
||||||
targetFiles := []string{"go.mod", "go.sum"}
|
|
||||||
preHashes, err := hashSourceFiles(targetFiles)
|
|
||||||
if err != nil {
|
|
||||||
log.Fatal("failed to hash go.mod/go.sum", "err", err)
|
|
||||||
}
|
|
||||||
tc := new(build.GoToolchain)
|
|
||||||
c := tc.Go("mod", "tidy")
|
|
||||||
build.MustRun(c)
|
|
||||||
postHashes, err := hashSourceFiles(targetFiles)
|
|
||||||
updates := compareHashedFilesets(preHashes, postHashes)
|
|
||||||
for _, updatedFile := range updates {
|
|
||||||
fmt.Fprintf(os.Stderr, "changed file %s\n", updatedFile)
|
|
||||||
}
|
|
||||||
if len(updates) != 0 {
|
|
||||||
log.Fatal("go.sum and/or go.mod were updated by running 'go mod tidy'")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// doGenerate ensures that re-generating generated files does not cause
|
|
||||||
// any mutations in the source file tree: i.e. all generated files were
|
|
||||||
// updated and committed. Any stale generated files are updated.
|
|
||||||
func doGenerate() {
|
|
||||||
var (
|
var (
|
||||||
tc = new(build.GoToolchain)
|
|
||||||
cachedir = flag.String("cachedir", "./build/cache", "directory for caching binaries.")
|
cachedir = flag.String("cachedir", "./build/cache", "directory for caching binaries.")
|
||||||
verify = flag.Bool("verify", false, "check whether any files are changed by go generate")
|
|
||||||
)
|
)
|
||||||
|
// Compute the origin hashes of all the files
|
||||||
|
var hashes map[string][32]byte
|
||||||
|
|
||||||
protocPath := downloadProtoc(*cachedir)
|
|
||||||
protocGenGoPath := downloadProtocGenGo(*cachedir)
|
|
||||||
|
|
||||||
var preHashes map[string][32]byte
|
|
||||||
if *verify {
|
|
||||||
var err error
|
var err error
|
||||||
preHashes, err = hashAllSourceFiles()
|
hashes, err = build.HashFolder(".", []string{"tests/testdata", "build/cache"})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("failed to compute map of source hashes", "err", err)
|
log.Fatal("Error computing hashes", "err", err)
|
||||||
}
|
}
|
||||||
}
|
// Run any go generate steps we might be missing
|
||||||
|
var (
|
||||||
c := tc.Go("generate", "./...")
|
protocPath = downloadProtoc(*cachedir)
|
||||||
|
protocGenGoPath = downloadProtocGenGo(*cachedir)
|
||||||
|
)
|
||||||
|
c := new(build.GoToolchain).Go("generate", "./...")
|
||||||
pathList := []string{filepath.Join(protocPath, "bin"), protocGenGoPath, os.Getenv("PATH")}
|
pathList := []string{filepath.Join(protocPath, "bin"), protocGenGoPath, os.Getenv("PATH")}
|
||||||
c.Env = append(c.Env, "PATH="+strings.Join(pathList, string(os.PathListSeparator)))
|
c.Env = append(c.Env, "PATH="+strings.Join(pathList, string(os.PathListSeparator)))
|
||||||
build.MustRun(c)
|
build.MustRun(c)
|
||||||
|
|
||||||
if !*verify {
|
// Check if generate file hashes have changed
|
||||||
return
|
generated, err := build.HashFolder(".", []string{"tests/testdata", "build/cache"})
|
||||||
}
|
|
||||||
// Check if files were changed.
|
|
||||||
postHashes, err := hashAllSourceFiles()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("error computing source tree file hashes", "err", err)
|
log.Fatalf("Error re-computing hashes: %v", err)
|
||||||
}
|
}
|
||||||
updates := compareHashedFilesets(preHashes, postHashes)
|
updates := build.DiffHashes(hashes, generated)
|
||||||
for _, updatedFile := range updates {
|
for _, file := range updates {
|
||||||
fmt.Fprintf(os.Stderr, "changed file %s\n", updatedFile)
|
log.Printf("File changed: %s", file)
|
||||||
}
|
}
|
||||||
if len(updates) != 0 {
|
if len(updates) != 0 {
|
||||||
log.Fatal("One or more generated files were updated by running 'go generate ./...'")
|
log.Fatal("One or more generated files were updated by running 'go generate ./...'")
|
||||||
}
|
}
|
||||||
|
fmt.Println("No stale files detected.")
|
||||||
|
}
|
||||||
|
|
||||||
|
// doCheckBadDeps verifies whether certain unintended dependencies between some
|
||||||
|
// packages leak into the codebase due to a refactor. This is not an exhaustive
|
||||||
|
// list, rather something we build up over time at sensitive places.
|
||||||
|
func doCheckBadDeps() {
|
||||||
|
baddeps := [][2]string{
|
||||||
|
// Rawdb tends to be a dumping ground for db utils, sometimes leaking the db itself
|
||||||
|
{"github.com/ethereum/go-ethereum/core/rawdb", "github.com/ethereum/go-ethereum/ethdb/leveldb"},
|
||||||
|
{"github.com/ethereum/go-ethereum/core/rawdb", "github.com/ethereum/go-ethereum/ethdb/pebbledb"},
|
||||||
|
}
|
||||||
|
tc := new(build.GoToolchain)
|
||||||
|
|
||||||
|
var failed bool
|
||||||
|
for _, rule := range baddeps {
|
||||||
|
out, err := tc.Go("list", "-deps", rule[0]).CombinedOutput()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Failed to list '%s' dependencies: %v", rule[0], err)
|
||||||
|
}
|
||||||
|
for _, line := range strings.Split(string(out), "\n") {
|
||||||
|
if strings.TrimSpace(line) == rule[1] {
|
||||||
|
log.Printf("Found bad dependency '%s' -> '%s'", rule[0], rule[1])
|
||||||
|
failed = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if failed {
|
||||||
|
log.Fatalf("Bad dependencies detected.")
|
||||||
|
}
|
||||||
|
fmt.Println("No bad dependencies detected.")
|
||||||
}
|
}
|
||||||
|
|
||||||
// doLint runs golangci-lint on requested packages.
|
// doLint runs golangci-lint on requested packages.
|
||||||
@ -488,8 +458,6 @@ func doLint(cmdline []string) {
|
|||||||
linter := downloadLinter(*cachedir)
|
linter := downloadLinter(*cachedir)
|
||||||
lflags := []string{"run", "--config", ".golangci.yml"}
|
lflags := []string{"run", "--config", ".golangci.yml"}
|
||||||
build.MustRunCommandWithOutput(linter, append(lflags, packages...)...)
|
build.MustRunCommandWithOutput(linter, append(lflags, packages...)...)
|
||||||
|
|
||||||
doGoModTidy()
|
|
||||||
fmt.Println("You have achieved perfection.")
|
fmt.Println("You have achieved perfection.")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,14 @@
|
|||||||
|
|
||||||
package build
|
package build
|
||||||
|
|
||||||
import "os"
|
import (
|
||||||
|
"crypto/sha256"
|
||||||
|
"io"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"sort"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
// FileExist checks if a file exists at path.
|
// FileExist checks if a file exists at path.
|
||||||
func FileExist(path string) bool {
|
func FileExist(path string) bool {
|
||||||
@ -26,3 +33,70 @@ func FileExist(path string) bool {
|
|||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// HashFiles iterates the provided set of files, computing the hash of each.
|
||||||
|
func HashFiles(files []string) (map[string][32]byte, error) {
|
||||||
|
res := make(map[string][32]byte)
|
||||||
|
for _, filePath := range files {
|
||||||
|
f, err := os.OpenFile(filePath, os.O_RDONLY, 0666)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
hasher := sha256.New()
|
||||||
|
if _, err := io.Copy(hasher, f); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
res[filePath] = [32]byte(hasher.Sum(nil))
|
||||||
|
}
|
||||||
|
return res, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// HashFolder iterates all files under the given directory, computing the hash
|
||||||
|
// of each.
|
||||||
|
func HashFolder(folder string, exlude []string) (map[string][32]byte, error) {
|
||||||
|
res := make(map[string][32]byte)
|
||||||
|
err := filepath.WalkDir(folder, func(path string, d os.DirEntry, _ error) error {
|
||||||
|
// Skip anything that's exluded or not a regular file
|
||||||
|
for _, skip := range exlude {
|
||||||
|
if strings.HasPrefix(path, filepath.FromSlash(skip)) {
|
||||||
|
return filepath.SkipDir
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !d.Type().IsRegular() {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
// Regular file found, hash it
|
||||||
|
f, err := os.OpenFile(path, os.O_RDONLY, 0666)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
hasher := sha256.New()
|
||||||
|
if _, err := io.Copy(hasher, f); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
res[path] = [32]byte(hasher.Sum(nil))
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return res, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// DiffHashes compares two maps of file hashes and returns the changed files.
|
||||||
|
func DiffHashes(a map[string][32]byte, b map[string][32]byte) []string {
|
||||||
|
var updates []string
|
||||||
|
|
||||||
|
for file := range a {
|
||||||
|
if _, ok := b[file]; !ok || a[file] != b[file] {
|
||||||
|
updates = append(updates, file)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for file := range b {
|
||||||
|
if _, ok := a[file]; !ok {
|
||||||
|
updates = append(updates, file)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sort.Strings(updates)
|
||||||
|
return updates
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user