generated from adrienaury/go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
92 lines (71 loc) · 1.66 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
##
## This project uses neon as a build tool, all of the make rules are mapped to the neon build in build.yml
##
SHELL := /bin/zsh # Use zsh syntax
.PHONY: init
init:
@touch ~/.dockerhub.yml
@chmod 0600 ~/.dockerhub.yml
@touch ~/.github.yml
@chmod 0600 ~/.github.yml
@git config --local core.hooksPath githooks
.PHONY: warning
warning:
@echo "This project uses neon as a build tool, all of the make rules are mapped to the neon build in build.yml"
@echo "You should use the 'neon' command directly, it works the same way as make"
@echo "example: neon build"
.PHONY: help
.DEFAULT_GOAL := help
help: warning
@neon help
.PHONY: info
info: warning
@neon info
.PHONY: promote
promote: warning
@neon promote
.PHONY: refresh
refresh: warning
@neon refresh
.PHONY: compile-%
compile-%: warning
@neon -props "{buildpaths: ["cmd/$*"]}" compile
.PHONY: compile
compile: warning
@neon compile
.PHONY: test
test: warning
@neon test
.PHONY: lint
lint: warning
@neon lint
.PHONY: release-%
release-%: warning
@neon -props "{buildpaths: ["cmd/$*"]}" release
.PHONY: release
release: warning
@neon release
.PHONY: test-int
test-int: warning
@neon test-int
.PHONY: publish-%
publish-%: warning
@neon -props "{buildpaths: ["cmd/$*"]}" publish
.PHONY: publish
publish: warning
@neon publish
.PHONY: docker
docker: warning
@neon docker
.PHONY: docker-tag
docker-tag: warning
@neon docker-tag
.PHONY: docker-push
docker-push: warning
@neon docker-push
.PHONY: license-%
license-%: warning
@neon -props "{buildpaths: ["cmd/$*"]}" license
.PHONY: license
license: warning
@neon license