2015-05-15 14:55:26 -07:00
|
|
|
.PHONY: dist
|
|
|
|
|
2014-03-01 20:46:10 -07:00
|
|
|
SHA := $(shell git rev-parse --short HEAD)
|
2015-04-07 01:20:55 -07:00
|
|
|
VERSION := 0.4.0-alpha
|
2014-02-07 03:10:01 -07:00
|
|
|
|
2015-04-25 16:16:56 -07:00
|
|
|
all: concat bindata build
|
2014-04-10 17:44:26 +00:00
|
|
|
|
|
|
|
deps:
|
2015-05-17 14:25:04 -07:00
|
|
|
go get github.com/jteeuwen/go-bindata/...
|
2014-04-10 17:44:26 +00:00
|
|
|
|
2014-06-04 14:25:38 -07:00
|
|
|
test:
|
2015-05-22 11:37:40 -07:00
|
|
|
go vet github.com/drone/drone/pkg/...
|
|
|
|
go vet github.com/drone/drone/cmd/...
|
|
|
|
go test -cover -short github.com/drone/drone/pkg/...
|
2014-04-10 17:44:26 +00:00
|
|
|
|
2014-07-13 19:41:08 -07:00
|
|
|
build:
|
2015-05-18 15:47:48 -07:00
|
|
|
go build -o bin/drone -ldflags "-X main.revision $(SHA) -X main.version $(VERSION).$(SHA)" github.com/drone/drone/cmd/drone-server
|
|
|
|
go build -o bin/drone-agent -ldflags "-X main.revision $(SHA) -X main.version $(VERSION).$(SHA)" github.com/drone/drone/cmd/drone-agent
|
2015-05-18 10:05:58 -07:00
|
|
|
|
2015-05-23 18:52:04 -07:00
|
|
|
run:
|
|
|
|
bin/drone-server --debug
|
2014-06-21 14:22:38 -07:00
|
|
|
|
2014-06-04 14:25:38 -07:00
|
|
|
clean:
|
2014-07-13 19:41:08 -07:00
|
|
|
find . -name "*.out" -delete
|
2015-05-22 11:37:40 -07:00
|
|
|
find . -name "*_bindata.go" -delete
|
|
|
|
rm -f bin/drone*
|
2015-04-25 16:16:56 -07:00
|
|
|
|
|
|
|
concat:
|
2015-05-22 11:37:40 -07:00
|
|
|
cat cmd/drone-server/static/scripts/drone.js \
|
2015-05-17 14:25:04 -07:00
|
|
|
cmd/drone-server/static/scripts/services/*.js \
|
|
|
|
cmd/drone-server/static/scripts/filters/*.js \
|
|
|
|
cmd/drone-server/static/scripts/controllers/*.js \
|
|
|
|
cmd/drone-server/static/scripts/term.js > cmd/drone-server/static/scripts/drone.min.js
|
|
|
|
|
2015-05-17 19:25:53 -07:00
|
|
|
# installs the drone binaries into bin
|
|
|
|
install:
|
|
|
|
install -t /usr/local/bin bin/drone
|
|
|
|
install -t /usr/local/bin bin/drone-agent
|
|
|
|
|
2015-05-17 14:25:04 -07:00
|
|
|
# embeds all the static files directly
|
|
|
|
# into the drone binary file
|
|
|
|
bindata:
|
|
|
|
$$GOPATH/bin/go-bindata -o="cmd/drone-server/drone_bindata.go" cmd/drone-server/static/...
|
2015-04-28 14:39:48 -07:00
|
|
|
|
2015-04-25 16:16:56 -07:00
|
|
|
bindata_debug:
|
2015-05-17 14:25:04 -07:00
|
|
|
$$GOPATH/bin/go-bindata --debug -o="cmd/drone-server/drone_bindata.go" cmd/drone-server/static/...
|
2015-05-15 14:55:26 -07:00
|
|
|
|
|
|
|
# creates a debian package for drone
|
|
|
|
# to install `sudo dpkg -i drone.deb`
|
|
|
|
dist:
|
|
|
|
mkdir -p dist/drone/usr/local/bin
|
|
|
|
mkdir -p dist/drone/var/lib/drone
|
|
|
|
mkdir -p dist/drone/var/cache/drone
|
|
|
|
cp bin/drone dist/drone/usr/local/bin
|
|
|
|
-dpkg-deb --build dist/drone
|