-
Notifications
You must be signed in to change notification settings - Fork 1
/
magefile.go
209 lines (180 loc) · 3.92 KB
/
magefile.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
//+build mage
package main
import (
"errors"
"fmt"
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"
"os"
"path/filepath"
"runtime"
"strings"
"sync"
)
const (
packageName = "github.com/NodeFactoryIo/hactar-deamon"
)
var goexe = "go"
func init() {
if exe := os.Getenv("GOEXE"); exe != "" {
goexe = exe
}
// We want to use Go 1.11 modules even if the source lives inside GOPATH.
os.Setenv("GO111MODULE", "on")
}
// mage build
func Build() error {
return sh.Run(goexe, "build", "./...")
}
func CleanAll() {
os.RemoveAll("./builds/")
}
// mage buildall
func BuildAll() error {
mg.Deps(Test, CleanAll)
platforms := [...]string{"linux", "darwin"}
archs := [...]string{"386", "amd64"}
for _, os := range platforms {
for _, a := range archs {
build(os, a)
}
}
return nil
}
func build(os string, arch string) error {
env := map[string]string{
"GOOS": os,
"GOARCH": arch,
}
fileName := fmt.Sprintf("./builds/%s/hactar-%s-%s", os, os[:3], arch)
return sh.RunWith(env, goexe, "build", "-o", fileName)
}
// mage install
func Install() error {
return sh.Run(goexe, "install", "./...")
}
// mage test
func Test() error {
// Disabled lint
//mg.Deps(Lint)
fmt.Println("Run tests:")
env := map[string]string{"GOFLAGS": testGoFlags()}
return runCmd(env, goexe, "test", "./...")
}
func testGoFlags() string {
// long tests can be skipped when running on CI
if isCI() {
return "-test.short"
}
return ""
}
// Run go vet linter
func Vet() error {
if err := runCmd(nil, goexe, "vet", "./..."); err != nil {
return fmt.Errorf("Error running go vet: %v", err)
} else {
fmt.Println("Linter vet finished")
}
return nil
}
// Run gofmt linter
func Fmt() error {
if !isGoLatest() {
return nil
}
pkgs, err := hactarPackages()
if err != nil {
return err
}
failed := false
first := true
for _, pkg := range pkgs {
files, err := filepath.Glob(filepath.Join(pkg, "*.go"))
if err != nil {
return nil
}
for _, f := range files {
// gofmt doesn't exit with non-zero when it finds unformatted code
// so we have to explicitly look for output, and if we find any, we
// should fail this target.
s, err := sh.Output("gofmt", "-l", f)
if err != nil {
fmt.Printf("ERROR: running gofmt on %q: %v\n", f, err)
failed = true
}
if s != "" {
if first {
fmt.Println("The following files are not gofmt'ed:")
first = false
}
failed = true
fmt.Println(s)
}
}
}
if failed {
return errors.New("improperly formatted go files")
}
return nil
}
func Lint() error {
fmt.Println("Linter golint")
pkgs, err := hactarPackages()
if err != nil {
return err
}
failed := false
for _, pkg := range pkgs {
// We don't actually want to fail this target if we find golint errors,
// so we don't pass -set_exit_status, but we still print out any failures.
if _, err := sh.Exec(nil, os.Stderr, nil, "golint", pkg); err != nil {
fmt.Printf("ERROR: running go lint on %q: %v\n", pkg, err)
failed = true
} else {
fmt.Println("\u2713 ", pkg)
}
}
if failed {
return errors.New("errors running golint")
}
return nil
}
// Util functions
var (
pkgPrefixLen = len("github.com/NodeFactoryIo/hactar-deamon")
pkgs []string
pkgsInit sync.Once
)
func hactarPackages() ([]string, error) {
var err error
pkgsInit.Do(func() {
var s string
s, err = sh.Output(goexe, "list", "./...")
if err != nil {
return
}
pkgs = strings.Split(s, "\n")
for i := range pkgs {
pkgs[i] = "." + pkgs[i][pkgPrefixLen:]
}
})
return pkgs, err
}
func isCI() bool {
return os.Getenv("CI") != ""
}
func isGoLatest() bool {
return strings.Contains(runtime.Version(), "1.13")
}
func runCmd(env map[string]string, cmd string, args ...string) error {
if mg.Verbose() {
return sh.RunWith(env, cmd, args...)
}
output, err := sh.OutputWith(env, cmd, args...)
if err != nil {
fmt.Fprint(os.Stderr, output)
} else {
fmt.Fprint(os.Stdout, output)
}
return err
}