-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
33 lines (26 loc) · 1.04 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
textimg: parser/grammar.peg.go *.go */*.go
go fmt ./...
go build
parser/grammar.peg.go: parser/grammar.peg
peg parser/grammar.peg
.PHONY: help
help: ## ドキュメントのヘルプを表示する。
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: test
test: textimg ## テストコードを実行する
go test -cover ./...
.PHONY: docker-build
docker-build: ## Dockerイメージをビルドする
docker-compose build
.PHONY: docker-test
docker-test: ## Docker環境でgo testを実行する
docker-compose run --rm base go test -tags docker -cover ./...
.PHONY: docker-push
docker-push: ## DockerHubにイメージをPushする
docker push jiro4989/textimg
.PHONY: setup-tools
setup-tools: ## 開発時に使うツールをインストールする
go install github.com/pointlander/peg@latest
wget https://raw.githubusercontent.com/ekalinin/github-markdown-toc/master/gh-md-toc
sudo install -m 0755 ./gh-md-toc /usr/local/bin/
-rm -f gh-md-toc