woodpecker/.drone.yml

52 lines
935 B
YAML
Raw Normal View History

2016-05-04 07:06:05 +00:00
workspace:
base: /go
2016-05-04 07:06:05 +00:00
path: src/github.com/drone/drone
2016-05-06 18:24:08 +00:00
pipeline:
backend:
image: golang:1.6
2016-04-20 01:37:53 +00:00
environment:
- GO15VENDOREXPERIMENT=1
commands:
- make deps gen
- make test test_postgres test_mysql
2016-05-26 18:08:48 +00:00
compile:
image: golang:1.6
2016-04-20 01:37:53 +00:00
environment:
- GO15VENDOREXPERIMENT=1
- GOPATH=/go
2016-04-20 01:37:53 +00:00
commands:
2016-05-04 07:17:35 +00:00
- export PATH=$PATH:$GOPATH/bin
2016-04-20 01:37:53 +00:00
- make build
when:
event: push
2015-10-01 05:16:42 +00:00
2016-05-26 18:08:48 +00:00
publish:
image: s3
2016-05-26 19:01:03 +00:00
acl: public-read
2016-05-26 18:08:48 +00:00
bucket: downloads.drone.io
2016-05-26 18:17:10 +00:00
source: release/**/*.*
2016-05-26 18:08:48 +00:00
when:
event: push
branch: master
2016-05-04 07:06:05 +00:00
docker:
repo: drone/drone
tag: [ "0.5.0", "0.5" ]
2016-05-04 19:13:24 +00:00
storage_driver: overlay
2016-05-04 07:06:05 +00:00
when:
branch: master
event: push
services:
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