2015-10-07 20:15:38 +00:00
.PHONY : vendor docs
2015-05-15 21:55:26 +00:00
2015-09-30 01:21:17 +00:00
PACKAGES = $( shell go list ./... | grep -v /vendor/)
2014-02-07 10:10:01 +00:00
2015-09-30 01:21:17 +00:00
all : gen build
deps :
2015-10-06 21:50:41 +00:00
go get -u golang.org/x/tools/cmd/cover
go get -u golang.org/x/tools/cmd/vet
go get -u github.com/kr/vexp
go get -u github.com/eknkc/amber/...
go get -u github.com/eknkc/amber
go get -u github.com/jteeuwen/go-bindata/...
go get -u github.com/elazarl/go-bindata-assetfs/...
go get -u github.com/dchest/jsmin
go get -u github.com/franela/goblin
go get -u github.com/PuerkitoBio/goquery
go get -u github.com/russross/blackfriday
2015-11-10 18:50:36 +00:00
GO15VENDOREXPERIMENT = 1 go get -u github.com/go-swagger/go-swagger/...
2015-09-30 01:21:17 +00:00
2015-10-06 17:19:43 +00:00
gen : gen_static gen_template gen_migrations
gen_static :
2015-10-06 21:41:55 +00:00
mkdir -p static/docs_gen/api static/docs_gen/build
2015-10-07 20:15:38 +00:00
mkdir -p static/docs_gen/api static/docs_gen/plugin
mkdir -p static/docs_gen/api static/docs_gen/setup
2015-10-25 22:18:16 +00:00
mkdir -p static/docs_gen/api static/docs_gen/cli
2015-10-06 17:19:43 +00:00
go generate github.com/drone/drone/static
gen_template :
go generate github.com/drone/drone/template
gen_migrations :
2015-10-21 23:39:43 +00:00
go generate github.com/drone/drone/store/migration
2015-09-02 23:52:59 +00:00
build :
2015-09-30 21:00:48 +00:00
go build
2015-09-30 01:21:17 +00:00
build_static :
2015-11-10 19:40:22 +00:00
go build --ldflags '-extldflags "-static" -X main.build=$(CI_BUILD_NUMBER)' -o drone_static
2015-09-30 01:21:17 +00:00
test :
go test -cover $( PACKAGES)
2015-10-20 07:08:09 +00:00
# docker run --publish=3306:3306 -e MYSQL_DATABASE=test -e MYSQL_ALLOW_EMPTY_PASSWORD=yes mysql:5.6.27
test_mysql :
2015-11-11 22:52:29 +00:00
DATABASE_DRIVER = "mysql" DATABASE_CONFIG = "root@tcp(127.0.0.1:3306)/test?parseTime=true" go test github.com/drone/drone/store/datastore
2015-10-20 07:08:09 +00:00
# docker run --publish=5432:5432 postgres:9.4.5
test_postgres :
2015-11-11 22:52:29 +00:00
DATABASE_DRIVER = "postgres" DATABASE_CONFIG = "host=127.0.0.1 user=postgres dbname=postgres sslmode=disable" go test github.com/drone/drone/store/datastore
2015-10-20 07:08:09 +00:00
2015-09-30 01:21:17 +00:00
deb :
mkdir -p contrib/debian/drone/usr/local/bin
mkdir -p contrib/debian/drone/var/lib/drone
mkdir -p contrib/debian/drone/var/cache/drone
cp drone contrib/debian/drone/usr/local/bin
-dpkg-deb --build contrib/debian/drone
vendor :
vexp
2015-10-07 20:15:38 +00:00
docs :
mkdir -p /drone/tmp/docs
2015-10-07 21:41:30 +00:00
mkdir -p /drone/tmp/static
2015-10-26 17:41:07 +00:00
cp -a static/docs_gen/* /drone/tmp/
2015-10-07 21:41:30 +00:00
cp -a static/styles_gen /drone/tmp/static/
cp -a static/images /drone/tmp/static/