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:
|
2017-03-05 19:14:24 +11:00
|
|
|
image: golang:1.8
|
2016-04-19 18:37:53 -07:00
|
|
|
commands:
|
|
|
|
- make deps gen
|
|
|
|
- make test test_postgres test_mysql
|
2016-05-26 11:08:48 -07:00
|
|
|
|
2017-05-08 02:01:04 +02:00
|
|
|
dist:
|
2017-03-05 19:14:24 +11:00
|
|
|
image: golang:1.8
|
2016-04-19 18:37:53 -07:00
|
|
|
commands:
|
2017-05-08 02:01:04 +02:00
|
|
|
- ./ci.sh
|
|
|
|
- ./dist.sh
|
2017-05-08 02:41:12 +02:00
|
|
|
secrets: [ ssh_key ]
|
2016-04-19 18:37:53 -07:00
|
|
|
when:
|
2017-05-12 15:46:32 +02:00
|
|
|
event: [ push, tag ]
|
2015-09-30 22:16:42 -07:00
|
|
|
|
2017-03-16 18:14:02 +08:00
|
|
|
archive:
|
|
|
|
image: plugins/s3
|
|
|
|
acl: public-read
|
|
|
|
bucket: downloads.drone.io
|
|
|
|
source: release/**/*.*
|
2017-03-16 18:17:10 +08:00
|
|
|
target: /0.6.0/
|
2017-04-12 19:37:18 +02:00
|
|
|
secrets: [ aws_access_key_id, aws_secret_access_key ]
|
2017-03-16 18:14:02 +08:00
|
|
|
when:
|
|
|
|
event: push
|
|
|
|
branch: master
|
2016-05-26 11:08:48 -07:00
|
|
|
|
2017-05-08 02:01:04 +02:00
|
|
|
publish:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/drone
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-05-12 12:30:19 +02:00
|
|
|
tag: [ latest ]
|
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
|
|
|
|
|
2017-05-12 12:30:19 +02:00
|
|
|
release:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/drone
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ 0.6, 0.6.0 ]
|
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2017-01-20 12:48:29 +07:00
|
|
|
notify:
|
|
|
|
image: plugins/gitter
|
2017-04-12 19:37:18 +02:00
|
|
|
secrets: [ gitter_webhook ]
|
2017-01-20 12:48:29 +07:00
|
|
|
when:
|
|
|
|
status: [ success, failure ]
|
|
|
|
|
2016-05-04 00:06:05 -07:00
|
|
|
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
|