forked from c4po/harbor_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
30 lines (24 loc) · 878 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
28
29
30
# These will be provided to the target
VERSION := `cat VERSION`
REVISION := `git rev-parse HEAD`
BRANCH := `git rev-parse --abbrev-ref HEAD`
USER := `whoami`
NOW := `date -u +'%F-%T-%Z'`
# Use linker flags to provide version/build settings to the target
LDFLAGS=-ldflags "-X=github.com/prometheus/common/version.Version=$(VERSION) \
-X=github.com/prometheus/common/version.Branch=$(BRANCH) \
-X=github.com/prometheus/common/version.Revision=$(REVISION) \
-X=github.com/prometheus/common/version.BuildDate=$(NOW) \
-X=github.com/prometheus/common/version.BuildUser=$(USER)"
build:
@go build $(LDFLAGS) -o releases/harbor_exporter
dockerbuild:
docker build -t c4po/harbor-exporter .
dockerpush:
docker push c4po/harbor-exporter
fmt:
go mod tidy
gofmt -s -w .
# golangci-lint run ./
tools:
GO111MODULE=on go install github.com/golangci/golangci-lint/cmd/golangci-lint