aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-13 18:16:22 +0800
committerGitHub <noreply@github.com>2017-01-13 18:16:22 +0800
commitb5a100b859213dbb7d4545ce53dabab398b4191e (patch)
tree25f3be47fff013457785e9d87d08cadc589b7cf2 /build
parent01f6f2d741e717f669b7ba1d6b88991f28e30c72 (diff)
parent54fcab20e30cdae23809deb371f120b5ba47d258 (diff)
downloaddexon-b5a100b859213dbb7d4545ce53dabab398b4191e.tar
dexon-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.gz
dexon-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.bz2
dexon-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.lz
dexon-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.xz
dexon-b5a100b859213dbb7d4545ce53dabab398b4191e.tar.zst
dexon-b5a100b859213dbb7d4545ce53dabab398b4191e.zip
Merge pull request #3560 from karalabe/ci-misspell
travis, appveyor, build: add source spell checking
Diffstat (limited to 'build')
-rw-r--r--build/ci.go35
1 files changed, 33 insertions, 2 deletions
diff --git a/build/ci.go b/build/ci.go
index d530c24ca..a3213e7c9 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -24,7 +24,7 @@ Usage: go run ci.go <command> <command flags/arguments>
Available commands are:
install [-arch architecture] [ packages... ] -- builds packages and executables
- test [ -coverage ] [ -vet ] [ packages... ] -- runs the tests
+ test [ -coverage ] [ -vet ] [ -misspell ] [ packages... ] -- runs the tests
archive [-arch architecture] [ -type zip|tar ] [ -signer key-envvar ] [ -upload dest ] -- archives build artefacts
importkeys -- imports signing keys from env
debsrc [ -signer key-id ] [ -upload dest ] -- creates a debian source package
@@ -262,6 +262,7 @@ func goToolArch(arch string, subcmd string, args ...string) *exec.Cmd {
func doTest(cmdline []string) {
var (
vet = flag.Bool("vet", false, "Whether to run go vet")
+ misspell = flag.Bool("misspell", false, "Whether to run the spell checker")
coverage = flag.Bool("coverage", false, "Whether to record code coverage")
)
flag.CommandLine.Parse(cmdline)
@@ -287,7 +288,9 @@ func doTest(cmdline []string) {
if *vet {
build.MustRun(goTool("vet", packages...))
}
-
+ if *misspell {
+ spellcheck(packages)
+ }
// Run the actual tests.
gotest := goTool("test")
// Test a single package at a time. CI builders are slow
@@ -300,6 +303,34 @@ func doTest(cmdline []string) {
build.MustRun(gotest)
}
+// spellcheck runs the client9/misspell spellchecker package on all Go, Cgo and
+// test files in the requested packages.
+func spellcheck(packages []string) {
+ // Ensure the spellchecker is available
+ build.MustRun(goTool("get", "github.com/client9/misspell/cmd/misspell"))
+
+ // Windows chokes on long argument lists, check packages individualy
+ for _, pkg := range packages {
+ // The spell checker doesn't work on packages, gather all .go files for it
+ out, err := goTool("list", "-f", "{{.Dir}}{{range .GoFiles}}\n{{.}}{{end}}{{range .CgoFiles}}\n{{.}}{{end}}{{range .TestGoFiles}}\n{{.}}{{end}}", pkg).CombinedOutput()
+ if err != nil {
+ log.Fatalf("source file listing failed: %v\n%s", err, string(out))
+ }
+ // Retrieve the folder and assemble the source list
+ lines := strings.Split(string(out), "\n")
+ root := lines[0]
+
+ sources := make([]string, 0, len(lines)-1)
+ for _, line := range lines[1:] {
+ if line = strings.TrimSpace(line); line != "" {
+ sources = append(sources, filepath.Join(root, line))
+ }
+ }
+ // Run the spell checker for this particular package
+ build.MustRunCommand(filepath.Join(GOBIN, "misspell"), append([]string{"-error"}, sources...)...)
+ }
+}
+
// Release Packaging
func doArchive(cmdline []string) {