forked from deis/deis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
72 lines (51 loc) · 1.85 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
include ../includes.mk
# the filepath to this repository, relative to $GOPATH/src
repo_path = github.com/deis/deis/publisher
GO_FILES = $(wildcard *.go)
GO_PACKAGES = server
GO_PACKAGES_REPO_PATH = $(addprefix $(repo_path)/,$(GO_PACKAGES))
COMPONENT = $(notdir $(repo_path))
DOCKER_IMAGE := $(IMAGE_PREFIX)$(COMPONENT)
RELEASE_IMAGE := $(DOCKER_IMAGE):$(BUILD_TAG)
REMOTE_IMAGE := $(REGISTRY)$(RELEASE_IMAGE)
BINARY_DEST_DIR = image/bin
build: check-docker
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags '-s' -o $(BINARY_DEST_DIR)/publisher github.com/deis/deis/publisher || exit 1
@$(call check-static-binary,$(BINARY_DEST_DIR)/publisher)
docker build -t $(RELEASE_IMAGE) image
clean: check-docker check-registry
rm -rf $(BINARY_DEST_DIR)
docker rmi $(RELEASE_IMAGE) $(REMOTE_IMAGE)
full-clean: check-docker check-registry
docker images -q $(DOCKER_IMAGE) | xargs docker rmi -f
docker images -q $(REGISTRY)/$(DOCKER_IMAGE) | xargs docker rmi -f
install: check-deisctl
deisctl install publisher
dev-release: push set-image
push: check-registry
docker tag -f $(RELEASE_IMAGE) $(REMOTE_IMAGE)
docker push $(REMOTE_IMAGE)
set-image: check-deisctl
deisctl config publisher set image=$(REMOTE_IMAGE)
release: check-docker
docker push $(DOCKER_IMAGE)
deploy: build dev-release restart
restart: stop start
run: install start
start: check-deisctl
deisctl start publisher
stop: check-deisctl
deisctl stop publisher
test: test-style test-unit test-functional
test-functional:
@echo no functional tests
test-style:
# display output, then check
$(GOFMT) $(GO_PACKAGES) $(GO_FILES)
@$(GOFMT) $(GO_PACKAGES) $(GO_FILES) | read; if [ $$? == 0 ]; then echo "gofmt check failed."; exit 1; fi
$(GOVET) $(repo_path) $(GO_PACKAGES_REPO_PATH)
$(GOLINT) ./...
test-unit:
$(GOTEST) ./...
uninstall: check-deisctl
deisctl uninstall publisher