1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00
woodpecker/.drone.yml

53 lines
992 B
YAML
Raw Normal View History

2016-05-04 09:06:05 +02:00
workspace:
base: /drone
path: src/github.com/drone/drone
2016-05-06 20:24:08 +02:00
pipeline:
2016-04-20 03:37:53 +02:00
test:
image: drone/golang:1.5
environment:
- GO15VENDOREXPERIMENT=1
2016-05-04 09:14:23 +02:00
- GOPATH=/drone
2016-04-20 03:37:53 +02:00
commands:
2016-05-04 09:17:35 +02:00
- export PATH=$PATH:$GOPATH/bin
2016-04-20 03:37:53 +02:00
- make deps gen
- make test test_postgres test_mysql
2016-05-26 20:08:48 +02:00
build:
2016-04-20 03:37:53 +02:00
image: drone/golang:1.5
environment:
- GO15VENDOREXPERIMENT=1
2016-05-04 09:14:23 +02:00
- GOPATH=/drone
2016-04-20 03:37:53 +02:00
commands:
2016-05-04 09:17:35 +02:00
- export PATH=$PATH:$GOPATH/bin
2016-04-20 03:37:53 +02:00
- make build
when:
event: push
2015-10-01 07:16:42 +02:00
2016-05-26 20:08:48 +02:00
publish:
image: s3
bucket: downloads.drone.io
source: release/**/*.tar.gz
when:
event: push
branch: master
2016-05-04 09:06:05 +02:00
docker:
repo: drone/drone
tag: [ "0.5.0", "0.5" ]
2016-05-04 21:13:24 +02:00
storage_driver: overlay
2016-05-04 09:06:05 +02:00
when:
branch: master
event: push
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