2014-03-02 06:46:10 +03:00
SHA := $( shell git rev-parse --short HEAD)
2014-02-07 13:10:01 +03:00
2014-06-22 00:22:38 +03:00
all : build
2014-04-10 20:44:26 +03:00
deps :
2014-07-14 05:53:59 +03:00
# which npm && npm -g install uglify-js less
2014-06-12 23:01:11 +03:00
go get github.com/GeertJohan/go.rice/rice
2014-08-04 07:33:47 +03:00
go get github.com/franela/goblin
2014-06-12 22:55:57 +03:00
go list github.com/drone/drone/... | xargs go get -t -v
2014-04-10 20:44:26 +03:00
2014-06-05 00:25:38 +03:00
test :
go vet ./...
go test -cover -short ./...
2014-04-10 20:44:26 +03:00
2014-10-01 09:30:42 +03:00
test_mysql :
mysql -P 3306 --protocol= tcp -u root -e 'create database test;'
TEST_DRIVER = "mysql" TEST_DATASOURCE = "root@tcp(127.0.0.1:3306)/test" go test -short github.com/drone/drone/server/datastore/database
test_postgres :
TEST_DRIVER = "postgres" TEST_DATASOURCE = "host=127.0.0.1 user=postgres dbname=postgres sslmode=disable" go test -short github.com/drone/drone/server/datastore/database
2014-07-14 05:41:08 +03:00
build :
2014-09-25 07:24:12 +03:00
go build -o debian/drone/usr/local/bin/drone -ldflags " -X main.revision $( SHA) " github.com/drone/drone/cli
2014-07-14 05:41:08 +03:00
go build -o debian/drone/usr/local/bin/droned -ldflags " -X main.revision $( SHA) " github.com/drone/drone/server
2014-07-17 08:14:53 +03:00
install :
install -t /usr/local/bin debian/drone/usr/local/bin/drone
install -t /usr/local/bin debian/drone/usr/local/bin/droned
2014-06-22 00:22:38 +03:00
run :
2014-09-29 04:36:24 +03:00
@go run server/main.go --config= $$ HOME/.drone/config.toml
2014-06-22 00:22:38 +03:00
2014-06-05 00:25:38 +03:00
clean :
2014-07-14 05:41:08 +03:00
find . -name "*.out" -delete
rm -f debian/drone/usr/local/bin/drone
rm -f debian/drone/usr/local/bin/droned
rm -f debian/drone.deb
rm -f server/server
2014-09-25 07:24:12 +03:00
rm -f cli/cli
2014-07-14 05:41:08 +03:00
lessc :
lessc --clean-css server/app/styles/drone.less server/app/styles/drone.css
2014-03-02 08:43:20 +03:00
2014-07-14 05:41:08 +03:00
dpkg : build embed deb
2014-06-12 03:42:49 +03:00
2014-06-22 00:22:38 +03:00
# embeds content in go source code so that it is compiled
# and packaged inside the go binary file.
2014-07-14 05:41:08 +03:00
embed :
rice --import-path= "github.com/drone/drone/server" append --exec= "debian/drone/usr/local/bin/droned"
2014-02-07 13:10:01 +03:00
2014-06-22 00:22:38 +03:00
# creates a debian package for drone to install
# `sudo dpkg -i drone.deb`
deb :
2014-07-14 02:04:10 +03:00
mkdir -p debian/drone/usr/local/bin
mkdir -p debian/drone/var/lib/drone
2014-06-22 00:22:38 +03:00
dpkg-deb --build debian/drone
2014-07-12 01:29:31 +03:00
2014-07-14 05:41:08 +03:00
# deploys drone to a staging server. this requires the following
# environment variables are set:
#
# DRONE_STAGING_HOST -- the hostname or ip
# DRONE_STAGING_USER -- the username used to login
# DRONE_STAGING_KEY -- the identity file path (~/.ssh/id_rsa)
2014-07-12 01:29:31 +03:00
deploy :
scp -i $$ DRONE_STAGING_KEY debian/drone.deb $$ DRONE_STAGING_USER@$$ DRONE_STAGING_HOST:/tmp
ssh -i $$ DRONE_STAGING_KEY $$ DRONE_STAGING_USER@$$ DRONE_STAGING_HOST -- dpkg -i /tmp/drone.deb