-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (41 loc) · 1.28 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
VERSION=v1.0.0
GOCMD=go
GOBUILD=$(GOCMD) build
GOCLEAN=$(GOCMD) clean
GOTEST=$(GOCMD) test
GOLINT=golangci-lint run
BUILD_PLATFORM=linux/amd64
PACKAGE_PLATFORM=$(BUILD_PLATFORM)
VERSION_MAJOR=$(shell echo $(VERSION) | cut -f1 -d.)
VERSION_MINOR=$(shell echo $(VERSION) | cut -f2 -d.)
GO_PACKAGE_PREFIX=touilleio/volley-manager-public-api
DOCKER_REGISTRY=
GIT_COMMIT=$(shell git rev-parse HEAD)
GIT_DIRTY=$(shell test -n "`git status --porcelain`" && echo "+CHANGES" || true)
BUILD_DATE=$(shell date '+%Y-%m-%d-%H:%M:%S')
all: ensure build package
ensure:
env GOOS=linux $(GOCMD) mod download
clean:
$(GOCLEAN)
lint:
$(GOLINT) ...
build:
env GOOS=linux CGO_ENABLED=0 \
$(GOBUILD) \
-ldflags "-X github.com/sqooba/go-common/version.GitCommit=${GIT_COMMIT}${GIT_DIRTY} \
-X github.com/sqooba/go-common/version.BuildDate=${BUILD_DATE} \
-X github.com/sqooba/go-common/version.Version=${VERSION}" \
-o volley-manager-public-api .
package:
docker buildx build -f Dockerfile \
--platform $(BUILD_PLATFORM) \
--build-arg VERSION=$(VERSION) \
--build-arg BUILD_DATE=$(BUILD_DATE) \
--build-arg GIT_COMMIT=${GIT_COMMIT}${GIT_DIRTY} \
-t ${DOCKER_REGISTRY}${GO_PACKAGE_PREFIX}:$(VERSION) \
.
test:
$(GOTEST) ./...
release:
docker push ${DOCKER_REGISTRY}${GO_PACKAGE_PREFIX}:$(VERSION)