mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
51 lines
950 B
YAML
51 lines
950 B
YAML
workspace:
|
|
base: /go
|
|
path: src/github.com/drone/drone
|
|
|
|
pipeline:
|
|
test:
|
|
image: golang:1.6
|
|
environment:
|
|
- GO15VENDOREXPERIMENT=1
|
|
commands:
|
|
- make deps gen
|
|
- make test test_postgres test_mysql
|
|
|
|
compile:
|
|
image: golang:1.6
|
|
environment:
|
|
- GO15VENDOREXPERIMENT=1
|
|
- GOPATH=/go
|
|
commands:
|
|
- export PATH=$PATH:$GOPATH/bin
|
|
- make build
|
|
when:
|
|
event: push
|
|
|
|
publish:
|
|
image: plugins/s3
|
|
acl: public-read
|
|
bucket: downloads.drone.io
|
|
source: release/**/*.*
|
|
when:
|
|
event: push
|
|
branch: master
|
|
|
|
docker:
|
|
image: plugins/docker
|
|
repo: drone/drone
|
|
tag: [ "0.5", "0.5.0", "0.5.0-rc" ]
|
|
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
|