1
+ # Make does not offer a recursive wildcard function, so here's one:
2
+ rwildcard =$(wildcard $1$2) $(foreach d,$(wildcard $1* ) ,$(call rwildcard,$d/,$2) )
3
+
4
+ SHELL := /bin/bash
5
+ NAME := jx-helpers
6
+ BINARY_NAME := jx-alpha-extsecret
7
+ BUILD_TARGET = build
8
+ MAIN_SRC_FILE =cmd/main.go
9
+ GO := GO111MODULE=on go
10
+ GO_NOMOD :=GO111MODULE=off go
11
+ REV := $(shell git rev-parse --short HEAD 2> /dev/null || echo 'unknown')
12
+ ORG := jenkins-x
13
+ ORG_REPO := $(ORG ) /$(NAME )
14
+ RELEASE_ORG_REPO := $(ORG_REPO )
15
+ ROOT_PACKAGE := github.com/$(ORG_REPO )
16
+ GO_VERSION := $(shell $(GO ) version | sed -e 's/^[^0-9.]* \([0-9.]* \) .*/\1/')
17
+ GO_DEPENDENCIES := $(call rwildcard,pkg/,* .go) $(call rwildcard,cmd/j,* .go)
18
+
19
+ BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2> /dev/null || echo 'unknown')
20
+ BUILD_DATE := $(shell date +% Y% m% d-% H:% M:% S)
21
+ CGO_ENABLED = 0
22
+
23
+ GOPRIVATE := github.com/jenkins-x/jx-promote
24
+
25
+ REPORTS_DIR =$(BUILD_TARGET ) /reports
26
+
27
+ GOTEST := $(GO ) test
28
+
29
+ # set dev version unless VERSION is explicitly set via environment
30
+ VERSION ?= $(shell echo "$$(git for-each-ref refs/tags/ --count=1 --sort=-version:refname --format='%(refname:short ) ' 2>/dev/null) -dev+$(REV ) " | sed 's/^v//')
31
+
32
+ # Build flags for setting build-specific configuration at build time - defaults to empty
33
+ # BUILD_TIME_CONFIG_FLAGS ?= ""
34
+
35
+ # Full build flags used when building binaries. Not used for test compilation/execution.
36
+ BUILDFLAGS := -ldflags \
37
+ " -X $(ROOT_PACKAGE ) /pkg/version.Version=$(VERSION ) \
38
+ -X $(ROOT_PACKAGE ) /pkg/version.Revision='$(REV ) '\
39
+ -X $(ROOT_PACKAGE ) /pkg/version.Branch='$(BRANCH ) '\
40
+ -X $(ROOT_PACKAGE ) /pkg/version.BuildDate='$(BUILD_DATE ) '\
41
+ -X $(ROOT_PACKAGE ) /pkg/version.GoVersion='$(GO_VERSION ) '\
42
+ $(BUILD_TIME_CONFIG_FLAGS ) "
43
+
44
+ # Some tests expect default values for version.*, so just use the config package values there.
45
+ TEST_BUILDFLAGS := -ldflags "$(BUILD_TIME_CONFIG_FLAGS ) "
46
+
47
+ ifdef DEBUG
48
+ BUILDFLAGS := -gcflags "all=-N -l" $(BUILDFLAGS )
49
+ endif
50
+
51
+ ifdef PARALLEL_BUILDS
52
+ BUILDFLAGS += -p $(PARALLEL_BUILDS )
53
+ GOTEST += -p $(PARALLEL_BUILDS )
54
+ else
55
+ # -p 4 seems to work well for people
56
+ GOTEST += -p 4
57
+ endif
58
+
59
+ ifdef DISABLE_TEST_CACHING
60
+ GOTEST += -count=1
61
+ endif
62
+
63
+ TEST_PACKAGE ?= ./...
64
+ COVER_OUT: =$(REPORTS_DIR ) /cover.out
65
+ COVERFLAGS=-coverprofile =$(COVER_OUT ) --covermode=count --coverpkg=./...
66
+
67
+ .PHONY : list
68
+ list : # # List all make targets
69
+ @$(MAKE ) -pRrn : -f $(MAKEFILE_LIST ) 2> /dev/null | awk -v RS= -F: ' /^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | egrep -v -e ' ^[^[:alnum:]]' -e ' ^$@$$' | sort
70
+
71
+ .PHONY : help
72
+ .DEFAULT_GOAL := help
73
+ help :
74
+ @grep -h -E ' ^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST ) | awk ' BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
75
+
76
+ full : check # # Build and run the tests
77
+ check : build test # # Build and run the tests
78
+ get-test-deps : # # Install test dependencies
79
+ $(GO_NOMOD ) get github.com/axw/gocov/gocov
80
+ $(GO_NOMOD ) get -u gopkg.in/matm/v1/gocov-html
81
+
82
+ print-version : # # Print version
83
+ @echo $(VERSION )
84
+
85
+ build : $(GO_DEPENDENCIES ) clean # # Build jx-labs binary for current OS
86
+ CGO_ENABLED=$(CGO_ENABLED ) $(GO ) $(BUILD_TARGET ) $(BUILDFLAGS ) -o build/$(BINARY_NAME ) $(MAIN_SRC_FILE )
87
+
88
+ build-all : $(GO_DEPENDENCIES ) build make-reports-dir # # Build all files - runtime, all tests etc.
89
+ CGO_ENABLED=$(CGO_ENABLED ) $(GOTEST ) -run=nope -tags=integration -failfast -short ./... $(BUILDFLAGS )
90
+
91
+ tidy-deps : # # Cleans up dependencies
92
+ $(GO ) mod tidy
93
+ # mod tidy only takes compile dependencies into account, let's make sure we capture tooling dependencies as well
94
+ @$(MAKE ) install-generate-deps
95
+
96
+ .PHONY : make-reports-dir
97
+ make-reports-dir :
98
+ mkdir -p $(REPORTS_DIR )
99
+
100
+ test : # # Run tests with the "unit" build tag
101
+ KUBECONFIG=/cluster/connections/not/allowed CGO_ENABLED=$(CGO_ENABLED ) $(GOTEST ) --tags=" integration unit" -failfast -short ./... $(TEST_BUILDFLAGS )
102
+
103
+ test-coverage : make-reports-dir # # Run tests and coverage for all tests with the "unit" build tag
104
+ CGO_ENABLED=$(CGO_ENABLED ) $(GOTEST ) --tags=unit $(COVERFLAGS ) -failfast -short ./... $(TEST_BUILDFLAGS )
105
+
106
+ test-report : make-reports-dir get-test-deps test-coverage # # Create the test report
107
+ @gocov convert $(COVER_OUT ) | gocov report
108
+
109
+ test-report-html : make-reports-dir get-test-deps test-coverage # # Create the test report in HTML format
110
+ @gocov convert $(COVER_OUT ) | gocov-html > $(REPORTS_DIR ) /cover.html && open $(REPORTS_DIR ) /cover.html
111
+
112
+ install : $(GO_DEPENDENCIES ) # # Install the binary
113
+ GOBIN=${GOPATH} /bin $(GO ) install $(BUILDFLAGS ) $(MAIN_SRC_FILE )
114
+
115
+ linux : # # Build for Linux
116
+ CGO_ENABLED=$(CGO_ENABLED ) GOOS=linux GOARCH=amd64 $(GO ) $(BUILD_TARGET ) $(BUILDFLAGS ) -o build/linux/$(BINARY_NAME ) $(MAIN_SRC_FILE )
117
+ chmod +x build/linux/$(BINARY_NAME )
118
+
119
+ arm : # # Build for ARM
120
+ CGO_ENABLED=$(CGO_ENABLED ) GOOS=linux GOARCH=arm $(GO ) $(BUILD_TARGET ) $(BUILDFLAGS ) -o build/arm/$(BINARY_NAME ) $(MAIN_SRC_FILE )
121
+ chmod +x build/arm/$(BINARY_NAME )
122
+
123
+ win : # # Build for Windows
124
+ CGO_ENABLED=$(CGO_ENABLED ) GOOS=windows GOARCH=amd64 $(GO ) $(BUILD_TARGET ) $(BUILDFLAGS ) -o build/win/$(BINARY_NAME ) -windows-amd64.exe $(MAIN_SRC_FILE )
125
+
126
+ darwin : # # Build for OSX
127
+ CGO_ENABLED=$(CGO_ENABLED ) GOOS=darwin GOARCH=amd64 $(GO ) $(BUILD_TARGET ) $(BUILDFLAGS ) -o build/darwin/$(BINARY_NAME ) $(MAIN_SRC_FILE )
128
+ chmod +x build/darwin/$(BINARY_NAME )
129
+
130
+ .PHONY : release
131
+ release : clean linux test promoter
132
+
133
+ release-all : release linux win darwin
134
+
135
+ promoter :
136
+ cd promote && go build main.go
137
+
138
+ .PHONY : goreleaser
139
+ goreleaser :
140
+ step-go-releaser --organisation=$(ORG ) --revision=$(REV ) --branch=$(BRANCH ) --build-date=$(BUILD_DATE ) --go-version=$(GO_VERSION ) --root-package=$(ROOT_PACKAGE ) --version=$(VERSION )
141
+
142
+ .PHONY : clean
143
+ clean : # # Clean the generated artifacts
144
+ rm -rf build release dist
145
+
146
+ get-fmt-deps : # # Install test dependencies
147
+ $(GO_NOMOD ) get golang.org/x/tools/cmd/goimports
148
+
149
+ .PHONY : fmt
150
+ fmt : importfmt # # Format the code
151
+ $(eval FORMATTED = $(shell $(GO ) fmt ./...) )
152
+ @if [ " $( FORMATTED) " == " " ]; \
153
+ then \
154
+ echo "All Go files properly formatted"; \
155
+ else \
156
+ echo "Fixed formatting for : $(FORMATTED ) "; \
157
+ fi
158
+
159
+ .PHONY : importfmt
160
+ importfmt : get-fmt-deps
161
+ @echo " Formatting the imports..."
162
+ goimports -w $(GO_DEPENDENCIES )
163
+
164
+ .PHONY : lint
165
+ lint : # # Lint the code
166
+ ./hack/gofmt.sh
167
+ ./hack/linter.sh
168
+ ./hack/generate.sh
169
+
170
+ .PHONY : all
171
+ all : fmt build lint test
172
+
173
+ bin/docs :
174
+ go build $(LDFLAGS ) -v -o bin/docs cmd/docs/* .go
175
+
176
+ .PHONY : docs
177
+ docs : bin/docs # # update docs
178
+ @echo " Generating docs"
179
+ @./bin/docs --target=./docs/cmd
180
+ @./bin/docs --target=./docs/man/man1 --kind=man
181
+ @rm -f ./bin/docs
0 commit comments