This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
makefile
101 lines (77 loc) · 2.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# generated-from:8ef700b33a05ab58ec9e7fd3ad1a0d8a99a742beeefc09d26bc7e4b6dd2ad699 DO NOT REMOVE, DO UPDATE
PLATFORM=$(shell uname -s | tr '[:upper:]' '[:lower:]')
PWD := $(shell pwd)
ifndef VERSION
VERSION := $(shell git describe --tags --abbrev=0)
endif
COMMIT_HASH :=$(shell git rev-parse --short HEAD)
DEV_VERSION := dev-${COMMIT_HASH}
USERID := $(shell id -u $$USER)
GROUPID:= $(shell id -g $$USER)
all: install update build
.PHONY: install
install:
go mod tidy
go install github.com/markbates/pkger/cmd/pkger
go mod vendor
update:
pkger -include /configs/config.default.yml
go mod vendor
build:
go build -mod=vendor -ldflags "-X github.com/moov-io/iso20022.Version=${VERSION}" -o bin/iso20022 github.com/moov-io/iso20022/cmd/iso20022
.PHONY: check
check:
ifeq ($(OS),Windows_NT)
@echo "Skipping checks on Windows, currently unsupported."
else
@wget -O lint-project.sh https://raw.githubusercontent.com/moov-io/infra/master/go/lint-project.sh
@chmod +x ./lint-project.sh
COVER_THRESHOLD=90.0 GOLANGCI_LINTERS=gosec ./lint-project.sh
endif
.PHONY: teardown
teardown:
-docker-compose down --remove-orphans
docker: update docker-hub docker-fuzz
docker-hub:
docker build --pull --build-arg VERSION=${VERSION} -t moov/iso20022:${VERSION} -f Dockerfile .
docker tag moov/iso20022:${VERSION} moov/iso20022:latest
docker-fuzz:
docker build --pull -t moov/iso20022fuzz:$(VERSION) . -f Dockerfile-fuzz
docker tag moov/iso20022fuzz:$(VERSION) moov/iso20022fuzz:latest
docker-push:
docker push moov/iso20022:${VERSION}
docker push moov/iso20022:latest
.PHONY: dev-docker
dev-docker: update
docker build --pull --build-arg VERSION=${DEV_VERSION} -t moov/iso20022:${DEV_VERSION} -f Dockerfile .
.PHONY: dev-push
dev-push:
docker push moov/iso20022:${DEV_VERSION}
# Extra utilities not needed for building
run: update build
./bin/iso20022
docker-run:
docker run -v ${PWD}/data:/data -v ${PWD}/configs:/configs --env APP_CONFIG="/configs/config.yml" -it --rm moov-io/iso20022:${VERSION}
test: update
go test -cover github.com/moov-io/iso20022/...
.PHONY: clean
clean:
ifeq ($(OS),Windows_NT)
@echo "Skipping cleanup on Windows, currently unsupported."
else
@rm -rf cover.out coverage.txt misspell* staticcheck*
@rm -rf ./bin/
endif
# For open source projects
# From https://github.com/genuinetools/img
.PHONY: AUTHORS
AUTHORS:
@$(file >$@,# This file lists all individuals having contributed content to the repository.)
@$(file >>$@,# For how it is generated, see `make AUTHORS`.)
@echo "$(shell git log --format='\n%aN <%aE>' | LC_ALL=C.UTF-8 sort -uf)" >> $@
dist: clean build
ifeq ($(OS),Windows_NT)
CGO_ENABLED=1 GOOS=windows go build -o bin/iso20022.exe cmd/iso20022/*
else
CGO_ENABLED=1 GOOS=$(PLATFORM) go build -o bin/iso20022-$(PLATFORM)-amd64 cmd/iso20022/*
endif