woodpecker/.drone.yml
2015-10-27 18:34:33 -07:00

77 lines
1.5 KiB
YAML

clone:
path: github.com/drone/drone
build:
image: drone/golang:1.5
environment:
- GO15VENDOREXPERIMENT=1
commands:
- make deps gen
- make test test_postgres test_mysql
- make build build_static deb docs
compose:
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
publish:
s3:
acl: public-read
region: us-east-1
bucket: downloads.drone.io
access_key: $$AWS_KEY
secret_key: $$AWS_SECRET
source: contrib/debian/drone.deb
target: drone/0.4
when:
repo: drone/drone
# sync the documentation with the s3 bucket
s3_sync:
acl: public-read
region: us-east-1
bucket: readme.drone.io
access_key: $$AWS_KEY
secret_key: $$AWS_SECRET
source: /drone/tmp/
target: /
exclude: "*.svg"
when:
repo: drone/drone
branch: master
s3_sync:
acl: public-read
region: us-east-1
bucket: readme.drone.io
access_key: $$AWS_KEY
secret_key: $$AWS_SECRET
source: /drone/tmp/
target: /
exclude: "*"
include: "**.svg"
content_type: "image/svg+xml"
when:
repo: drone/drone
branch: master
docker:
username: drone
password: $$DOCKER_PASS
email: $$DOCKER_EMAIL
repo: drone/drone
tag:
- "latest"
- "0.4"
when:
repo: drone/drone
branch: master