aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-01-13 16:53:43 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-01-13 17:14:13 +0800
commite4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b (patch)
treed07486743c2a43cd2a7ba5bd1ac310141ae57a5f /build
parentc5df37c1119107ddcc517127b3bd7c2ab4e3649f (diff)
downloadgo-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.tar
go-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.tar.gz
go-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.tar.bz2
go-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.tar.lz
go-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.tar.xz
go-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.tar.zst
go-tangerine-e4181a7f1b9783c27cf2fc6a54a50da28a3b9e0b.zip
travis, appveyor, build: add source spell checking
Diffstat (limited to 'build')
-rw-r--r--build/ci.go25
1 files changed, 24 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go
index d530c24ca..31c4885a3 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,29 @@ func doTest(cmdline []string) {
if *vet {
build.MustRun(goTool("vet", packages...))
}
+ if *misspell {
+ // The spell checker doesn't work on packages, gather all .go files for it
+ sources := []string{}
+ for _, pkg := range packages {
+ // Gather all the source files of the package
+ 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]
+ for _, line := range lines[1:] {
+ if line = strings.TrimSpace(line); line != "" {
+ sources = append(sources, filepath.Join(root, line))
+ }
+ }
+ }
+ // Download the spell checker tool and run on all source files
+ build.MustRun(goTool("get", "github.com/client9/misspell/cmd/misspell"))
+ build.MustRunCommand(filepath.Join(GOBIN, "misspell"), append([]string{"-error"}, sources...)...)
+ }
// Run the actual tests.
gotest := goTool("test")
// Test a single package at a time. CI builders are slow