This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
magefile.go
291 lines (256 loc) · 6.8 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// +build mage
package main
import (
"errors"
"fmt"
"os"
"path/filepath"
"runtime"
"strings"
"time"
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"
)
const (
outDir = "build"
basePackage = "github.com/kasvith/kache"
noGitLdflags = "-X $PACKAGE/internal/cobra-cmds.BuildDate=$BUILD_DATE"
)
var ldflags = `-X $PACKAGE/internal/cobra-cmds.CommitHash=$COMMIT_HASH
-X $PACKAGE/internal/cobra-cmds.BuildDate=$BUILD_DATE`
// allow user to override go executable by running as GOEXE=xxx make ... on unix-like systems
var goexe = "go"
func init() {
if exe := os.Getenv("GOEXE"); exe != "" {
goexe = exe
}
os.Setenv("GO111MODULE", "on")
}
func flagEnv(osType, osArch string) map[string]string {
hash, _ := sh.Output("git", "rev-parse", "--short", "HEAD")
return map[string]string{
"PACKAGE": basePackage,
"OUT_DIR": outDir,
"COMMIT_HASH": hash,
"BUILD_DATE": time.Now().Format("2006-01-02T15:04:05Z0700"),
"GOOS": osType,
"GOARCH": osArch,
}
}
func addOSExecType(osType, osArch, str string) string {
str = fmt.Sprintf("%s-%s-%s", str, osType, osArch)
if osType == "windows" {
return str + ".exe"
}
return str
}
// get go imports
func getGoImports() error {
return sh.Run(goexe, "get", "-u", "golang.org/x/tools/cmd/goimports")
}
// get go lint
func getGoLint() error {
return sh.Run(goexe, "get", "-u", "golang.org/x/lint/golint")
}
// Install dependencies to vendor
func Vendor() error {
mg.Deps(getGoLint)
mg.Deps(getGoImports)
return sh.Run(goexe, "mod", "download")
}
// Build kache
func Kache() error {
return sh.RunWith(flagEnv(runtime.GOOS, runtime.GOARCH), goexe, "build", "-ldflags", ldflags, "-o", addOSExecType(runtime.GOOS, runtime.GOARCH, "$OUT_DIR/kache"), "$PACKAGE/cmd/kache")
}
// Build kache without git info
func KacheNoGitInfo() error {
ldflags = noGitLdflags
return Kache()
}
// Build kache cross platform
func KacheCrossBuild() error {
// os/arch types
platforms := map[string][]string{
"linux": []string{"386", "amd64", "arm"},
"darwin": []string{"386", "amd64"},
"windows": []string{"386", "amd64"},
"openbsd": []string{"386", "amd64"},
}
for osType, archs := range platforms {
for _, arch := range archs {
fmt.Printf("Building for %s-%s\n", osType, arch)
err := sh.RunWith(flagEnv(osType, arch), goexe, "build", "-ldflags", ldflags, "-o", addOSExecType(osType, arch, "$OUT_DIR/kache"), "$PACKAGE/cmd/kache")
if err != nil {
return err
}
}
}
return nil
}
// Build kache-cli
func KacheCli() error {
return sh.RunWith(flagEnv(runtime.GOOS, runtime.GOARCH), goexe, "build", "-ldflags", ldflags, "-o", addOSExecType(runtime.GOOS, runtime.GOARCH, "$OUT_DIR/kache-cli"), "$PACKAGE/cmd/kache-cli")
}
// Build kache-cli without git info
func KacheCliNoGitInfo() error {
ldflags = noGitLdflags
return Kache()
}
// Run gofmt, vet, imports and tests also with race
func Check() {
fmt.Println("Checking started")
if strings.Contains(runtime.Version(), "1.8") {
// Go 1.8 doesn't play along with go test ./... and /vendor.
// We could fix that, but that would take time.
fmt.Printf("Skip Check on %s\n", runtime.Version())
return
}
// Do this because CI memory error can occur
mg.Deps(Lint)
mg.Deps(Fmt)
mg.Deps(Vet)
mg.Deps(Imports)
mg.Deps(Test)
}
// Run tests
func Test() error {
return sh.RunV(goexe, "test", "-v", "./...")
}
// Run tests with race detector
func TestRace() error {
return sh.RunV(goexe, "test", "-race", "./...")
}
// get all packages of kache
func kachePackages() ([]string, error) {
var pkgPrefixLen = len(basePackage)
s, err := sh.Output(goexe, "list", "./...")
if err != nil {
return nil, err
}
pkgs := strings.Split(s, "\n")
for i := range pkgs {
pkgs[i] = "." + pkgs[i][pkgPrefixLen:]
}
return pkgs, nil
}
// check if go is latest
func isGoLatest() bool {
return strings.Contains(runtime.Version(), "1.11")
}
// Run gofmt linter
func Fmt() error {
if !isGoLatest() {
return nil
}
pkgs, err := kachePackages()
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
}
// Run goimports
func Imports() error {
pkgs, err := kachePackages()
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("goimports", "-w", `-local='github.com/kasvith/kache'`, "-l", f)
if err != nil {
fmt.Printf("ERROR: running goimports on %q: %v\n", f, err)
failed = true
}
if s != "" {
if first {
fmt.Println("The following files are not goimport'ed:")
first = false
}
failed = true
fmt.Println(s)
}
}
}
if failed {
return errors.New("run goimports in following files")
}
return nil
}
// Run golint
func Lint() error {
pkgs, err := kachePackages()
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", "-set_exit_status", pkg); err != nil {
fmt.Printf("ERROR: running go lint on %q: %v\n", pkg, err)
failed = true
}
}
if failed {
return errors.New("errors running golint")
}
return nil
}
// Run go vet linter
func Vet() error {
if err := sh.Run(goexe, "vet", "./..."); err != nil {
return fmt.Errorf("error running go vet: %v", err)
}
return nil
}
// Generate test coverage report
func TestCover() error {
return sh.RunV(goexe, "test", "-race", "-coverprofile=coverage.txt", "-covermode=atomic", "./...")
}
// Verify that vendored packages match git HEAD
func CheckVendor() error {
if err := sh.RunV("git", "diff-index", "--quiet", "HEAD", "vendor/"); err != nil {
// yes, ignore errors from this, not much we can do.
sh.Exec(nil, os.Stdout, os.Stderr, "git", "diff", "vendor/")
return errors.New("check-vendor target failed: vendored packages out of sync")
}
return nil
}