mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-04 16:09:33 +00:00
63 lines
1.2 KiB
YAML
63 lines
1.2 KiB
YAML
workspace:
|
|
base: /go
|
|
path: src/github.com/drone/drone
|
|
|
|
pipeline:
|
|
test:
|
|
image: golang:1.8
|
|
environment:
|
|
- GO15VENDOREXPERIMENT=1
|
|
commands:
|
|
- make deps gen
|
|
- make test test_postgres test_mysql
|
|
|
|
compile:
|
|
image: golang:1.8
|
|
environment:
|
|
- GO15VENDOREXPERIMENT=1
|
|
- GOPATH=/go
|
|
commands:
|
|
- export PATH=$PATH:$GOPATH/bin
|
|
- make build
|
|
when:
|
|
event: push
|
|
|
|
archive:
|
|
image: plugins/s3
|
|
acl: public-read
|
|
bucket: downloads.drone.io
|
|
source: release/**/*.*
|
|
target: /0.6.0/
|
|
access_key: ${AWS_ACCESS_KEY_ID}
|
|
secret_key: ${AWS_SECRET_ACCESS_KEY}
|
|
when:
|
|
event: push
|
|
branch: master
|
|
|
|
publish:
|
|
image: plugins/docker
|
|
repo: drone/drone
|
|
username: ${DOCKER_USERNAME}
|
|
password: ${DOCKER_PASSWORD}
|
|
tag: [ 0.6 ]
|
|
when:
|
|
branch: master
|
|
event: push
|
|
|
|
notify:
|
|
image: plugins/gitter
|
|
webhook: ${GITTER_WEBHOOK}
|
|
when:
|
|
status: [ success, failure ]
|
|
event: [ push, pull_request ]
|
|
|
|
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
|