woodpecker/.drone.yml
2017-05-08 02:07:22 +02:00

57 lines
1.1 KiB
YAML

workspace:
base: /go
path: src/github.com/drone/drone
pipeline:
test:
image: golang:1.8
commands:
- make deps gen
- make test test_postgres test_mysql
dist:
image: golang:1.8
commands:
- ./ci.sh
- ./dist.sh
secrets: [ ssk_key ]
when:
event: push
archive:
image: plugins/s3
acl: public-read
bucket: downloads.drone.io
source: release/**/*.*
target: /0.6.0/
secrets: [ aws_access_key_id, aws_secret_access_key ]
when:
event: push
branch: master
publish:
image: plugins/docker
repo: drone/drone
secrets: [ docker_username, docker_password ]
tag: [ latest, 0.6, 0.6.0, 0.6.0-rc.2 ]
when:
branch: master
event: push
notify:
image: plugins/gitter
secrets: [ gitter_webhook ]
when:
status: [ success, failure ]
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