-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
43 lines (32 loc) · 1.02 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
#!/usr/bin/make -f
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
COMMIT := $(shell git log -1 --format='%H')
# don't override user values
ifeq (,$(VERSION))
VERSION := $(shell git describe --tags)
# if VERSION is empty, then populate it with branch's name and raw commit hash
ifeq (,$(VERSION))
VERSION := $(BRANCH)-$(COMMIT)
endif
endif
# default value, overide with: make -e FQCN="foo"
FQCN = ghcr.io/defiantlabs/cosmos-tax-cli
all: install
install: go.sum
go install .
build:
go build -o bin/cosmos-tax-cli .
clean:
rm -rf build
build-docker-amd:
docker build -t $(FQCN):$(VERSION) -f ./Dockerfile \
--build-arg TARGETPLATFORM=linux/amd64 .
build-docker-arm:
docker build -t $(FQCN):$(VERSION) -f ./Dockerfile \
--build-arg TARGETPLATFORM=linux/arm64 .
.PHONY: lint
lint: ## Run golangci-linter
golangci-lint run --out-format=tab
.PHONY: format
format: ## Formats the code with gofumpt
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./client/docs/*" | xargs gofumpt -w