2016-05-04 07:06:05 +00:00
|
|
|
workspace:
|
2016-07-08 22:40:29 +00:00
|
|
|
base: /go
|
2016-05-04 07:06:05 +00:00
|
|
|
path: src/github.com/drone/drone
|
2015-05-09 08:41:24 +00:00
|
|
|
|
2016-05-06 18:24:08 +00:00
|
|
|
pipeline:
|
2016-10-23 21:00:55 +00:00
|
|
|
test:
|
2017-03-05 08:14:24 +00:00
|
|
|
image: golang:1.8
|
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
|
|
|
|
2016-07-08 22:40:29 +00:00
|
|
|
compile:
|
2017-03-05 08:14:24 +00:00
|
|
|
image: golang:1.8
|
2016-04-20 01:37:53 +00:00
|
|
|
environment:
|
|
|
|
- GO15VENDOREXPERIMENT=1
|
2016-07-08 22:40:29 +00:00
|
|
|
- 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
|
|
|
|
2017-03-16 10:14:02 +00:00
|
|
|
archive:
|
|
|
|
image: plugins/s3
|
|
|
|
acl: public-read
|
|
|
|
bucket: downloads.drone.io
|
|
|
|
source: release/**/*.*
|
2017-03-16 10:17:10 +00:00
|
|
|
target: /0.6.0/
|
2017-03-16 10:14:02 +00:00
|
|
|
access_key: ${AWS_ACCESS_KEY_ID}
|
|
|
|
secret_key: ${AWS_SECRET_ACCESS_KEY}
|
|
|
|
when:
|
|
|
|
event: push
|
|
|
|
branch: master
|
2016-05-26 18:08:48 +00:00
|
|
|
|
2017-01-20 05:48:29 +00:00
|
|
|
publish:
|
2016-10-23 21:00:55 +00:00
|
|
|
image: plugins/docker
|
2016-05-04 07:06:05 +00:00
|
|
|
repo: drone/drone
|
2017-01-20 05:48:29 +00:00
|
|
|
username: ${DOCKER_USERNAME}
|
|
|
|
password: ${DOCKER_PASSWORD}
|
2017-03-15 09:55:19 +00:00
|
|
|
tag: [ 0.6 ]
|
2016-05-04 07:06:05 +00:00
|
|
|
when:
|
2016-10-23 21:00:55 +00:00
|
|
|
branch: master
|
2016-05-04 07:06:05 +00:00
|
|
|
event: push
|
|
|
|
|
2017-01-20 05:48:29 +00:00
|
|
|
notify:
|
|
|
|
image: plugins/gitter
|
|
|
|
webhook: ${GITTER_WEBHOOK}
|
|
|
|
when:
|
|
|
|
status: [ success, failure ]
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
|
2016-05-04 07:06:05 +00:00
|
|
|
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
|