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