-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile
27 lines (22 loc) · 934 Bytes
/
Makefile
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
all: goclean gotest gorace
goclean:
go clean -r ./...
go mod tidy
gotest:
go test -v -timeout 10s -race github.com/dolab/gogo/pkgs/errors
go test -v -timeout 10s -race github.com/dolab/gogo/pkgs/gid
go test -v -timeout 10s -race github.com/dolab/gogo/pkgs/named
go test -v -timeout 10s -race github.com/dolab/gogo/pkgs/protocol/json
go test -v -timeout 10s -race github.com/dolab/gogo/pkgs/protocol/jsonpb
go test -v -timeout 10s -race github.com/dolab/gogo/pkgs/protocol/protobuf
go test -v -timeout 10s -race github.com/dolab/gogo/internal/params
go test -v -timeout 10s -race github.com/dolab/gogo/internal/protoc-gen/message
go test -v -timeout 10s -race github.com/dolab/gogo/internal/render
go test -v -timeout 10s
go test -v -timeout 10s -race
gorace: goclean
go test -timeout 10s -race
gobench: goclean
go test -run=none -bench=. ./internal/render
go test -run=none -bench=.
travis: goclean gotest gorace