-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (33 loc) · 1.37 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
include ../includes.mk
COMPONENT = deisctl
IMAGE = $(IMAGE_PREFIX)/$(COMPONENT):$(BUILD_TAG)
PACKAGE = $(COMPONENT)-$(BUILD_TAG).tar.gz
build:
CGO_ENABLED=0 godep go build -a -ldflags '-s' .
installer:
rm -rf dist && mkdir -p dist
CGO_ENABLED=0 godep go build -a -ldflags '-s' -o dist/deisctl .
@if [ ! -d makeself ]; then git clone -b deisctl-hack https://github.com/deis/makeself.git; fi
PATH=./makeself:$$PATH makeself.sh --bzip2 --nox11 --target /usr/local/bin dist \
dist/deisctl-`cat deis-version`-`go env GOOS`-`go env GOARCH`.run "Deis Control Utility" \
"deisctl refresh-units && chmod 755 /var/lib/deis /var/lib/deis/units && chmod -R 644 /var/lib/deis/units/*"
install:
godep go install -v .
setup-root-gotools:
sudo GOPATH=/tmp/tmpGOPATH go get -u -v code.google.com/p/go.tools/cmd/cover
sudo GOPATH=/tmp/tmpGOPATH go get -u -v code.google.com/p/go.tools/cmd/vet
sudo rm -rf /tmp/tmpGOPATH
setup-gotools:
go get -v github.com/golang/lint/golint
test-style:
go vet ./...
-golint *.go client/*.go cmd/*.go config/*.go constant/*.go lock/*.go update/*.go utils/*.go
test: test-style
godep go test -v -cover ./...
release: check-docker
rm -rf dist
docker build -t $(IMAGE) .
mkdir -p dist
-docker cp `docker run -d $(IMAGE)`:/tmp/deisctl.tar.gz dist/
mv dist/deisctl.tar.gz dist/$(PACKAGE)
aws s3 cp dist/$(PACKAGE) s3://$(S3_BUCKET)/$(PACKAGE) --acl public-read