forked from auth0/auth0-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
87 lines (70 loc) · 2.36 KB
/
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
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
#!/usr/bin/env make
# setup variables
NAME := auth0-cli
PKG := github.com/auth0/$(NAME)
BUILDINFOPKG := $(PKG)/internal/build-info
GOBIN ?= $(shell go env GOPATH)/bin
## setup variables for build-info
BUILDUSER := $(shell whoami)
BUILDTIME := $(shell date -u '+%Y-%m-%d %H:%M:%S')
VERSION := $(shell git describe --abbrev=0)
GITCOMMIT := $(shell git rev-parse --short HEAD)
GITUNTRACKEDCHANGES := $(shell git status --porcelain --untracked-files=no)
ifneq ($(GITUNTRACKEDCHANGES),)
GITCOMMIT := $(GITCOMMIT)-dirty
endif
GITBRANCH ?= $(shell git rev-parse --verify --abbrev-ref HEAD)
CTIMEVAR = -X '$(BUILDINFOPKG).Version=$(VERSION)' \
-X '$(BUILDINFOPKG).Revision=$(GITCOMMIT)' \
-X '$(BUILDINFOPKG).Branch=$(GITBRANCH)' \
-X '$(BUILDINFOPKG).BuildUser=$(BUILDUSER)' \
-X '$(BUILDINFOPKG).BuildDate=$(BUILDTIME)'
generate:
go generate ./...
.PHONY: generate
test:
CGO_ENABLED=1 go test -race ./... -count 1
.PHONY: test
lint:
golangci-lint run -v --timeout=5m
.PHONY: lint
# Build for the native platform
build:
go build -ldflags "$(CTIMEVAR)" -o $(GOBIN)/auth0 cmd/auth0/main.go
.PHONY: build
# Build a beta version of auth0-cli for all supported platforms
build-all-platforms:
env GOOS=darwin go build -ldflags "$(CTIMEVAR)" -o auth0-darwin cmd/auth0/main.go
env GOOS=linux go build -ldflags "$(CTIMEVAR)" -o auth0-linux cmd/auth0/main.go
env GOOS=windows go build -ldflags "$(CTIMEVAR)" -o auth0-windows.exe cmd/auth0/main.go
.PHONY: build-all-platforms
$(GOBIN)/mockgen:
@cd && GO111MODULE=on go get github.com/golang/mock/[email protected]
.PHONY: mocks
mocks: $(GOBIN)/mockgen
go generate ./...
$(GOBIN)/commander:
cd && GO111MODULE=auto go get github.com/commander-cli/commander/cmd/commander
run-integration:
auth0 config init && commander test commander.yaml
.PHONY: run-integration
# Delete all test apps created during integration testing
integration-cleanup:
./integration/test-cleanup.sh
.PHONY: integration-cleanup
integration: build $(GOBIN)/commander
$(MAKE) run-integration; \
ret=$$?; \
$(MAKE) integration-cleanup; \
exit $$ret
.PHONY: integration
build-doc:
rm ./docs/auth0_*.md
go run ./cmd/build_doc
mv ./docs/auth0.md ./docs/index.md
.PHONY: build-doc
# Start the doc site locally for testing purposes only
# requires https://jekyllrb.com/docs/installation/
start-doc: build-doc
@cd docs && bundle exec jekyll serve
.PHONY: start-doc