2016-05-04 07:06:05 +00:00
|
|
|
workspace:
|
|
|
|
base: /drone
|
|
|
|
path: src/github.com/drone/drone
|
2015-05-09 08:41:24 +00:00
|
|
|
|
2016-05-04 07:06:05 +00:00
|
|
|
script:
|
2016-04-20 01:37:53 +00:00
|
|
|
test:
|
|
|
|
image: drone/golang:1.5
|
|
|
|
environment:
|
|
|
|
- GO15VENDOREXPERIMENT=1
|
|
|
|
commands:
|
|
|
|
- make deps gen
|
|
|
|
- make test test_postgres test_mysql
|
|
|
|
dist:
|
|
|
|
image: drone/golang:1.5
|
|
|
|
environment:
|
|
|
|
- GO15VENDOREXPERIMENT=1
|
|
|
|
commands:
|
|
|
|
- make build
|
|
|
|
when:
|
|
|
|
event: push
|
2015-10-01 05:16:42 +00:00
|
|
|
|
2016-05-04 07:06:05 +00:00
|
|
|
docker:
|
|
|
|
repo: drone/drone
|
|
|
|
tag: [ "0.5.0" ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
|
|
|
services:
|
2015-10-20 07:08:09 +00:00
|
|
|
postgres:
|
|
|
|
image: postgres:9.4.5
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
mysql:
|
|
|
|
image: mysql:5.6.27
|
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|