mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
272 B
Makefile
20 lines
272 B
Makefile
5 years ago
|
VERSION?=$(shell grep 'VERSION' cmd/tk/main.go | awk '{ print $$4 }' | tr -d '"')
|
||
|
|
||
|
all: tidy fmt vet test build
|
||
|
|
||
|
build:
|
||
|
CGO_ENABLED=0 go build -o ./bin/tk ./cmd/tk
|
||
|
|
||
|
fmt:
|
||
|
go fmt ./...
|
||
|
|
||
|
vet:
|
||
|
go vet ./...
|
||
|
|
||
|
tidy:
|
||
|
go mod tidy
|
||
|
|
||
|
test:
|
||
|
go test ./... -coverprofile cover.out
|
||
|
|