-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMakefile
38 lines (29 loc) · 818 Bytes
/
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
.PHONY: build
export PROJECT_PATH = /go/src/github.com/appleboy/golang-testing
all:
install:
go get -u github.com/kardianos/govendor
sync:
govendor sync
build:
ifeq ($(tag),)
@echo "Usage: make $@ tag=<tag>"
@exit 1
endif
docker build --no-cache -f Dockerfile$(tag) -t appleboy/golang-testing:$(tag) .
docker_compose_test: clean
docker-compose -f docker/docker-compose.yml config
docker-compose -f docker/docker-compose.yml run golang-testing
docker-compose -f docker/docker-compose.yml down
docker_test: clean
docker run --rm \
-v $(PWD):$(PROJECT_PATH) \
-w=$(PROJECT_PATH) \
appleboy/golang-testing \
sh -c "make sync && coverage all"
test: clean sync
sudo cp coverage.sh /usr/local/bin/coverage
coverage testing
clean:
-rm -rf .cover
-docker-compose -f docker/docker-compose.yml down