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

112 lines
2.6 KiB
YAML
Raw Normal View History

2016-05-04 09:06:05 +02:00
workspace:
base: /go
2016-05-04 09:06:05 +02:00
path: src/github.com/drone/drone
2016-05-06 20:24:08 +02:00
pipeline:
2016-10-23 23:00:55 +02:00
test:
2017-03-05 10:14:24 +02:00
image: golang:1.8
2016-04-20 03:37:53 +02:00
commands:
2017-05-13 10:03:38 +02:00
- go get -u github.com/drone/drone-ui/dist
- go get -u golang.org/x/tools/cmd/cover
2017-06-28 19:30:10 +02:00
- go get -u golang.org/x/net/context
- go get -u golang.org/x/net/context/ctxhttp
2017-06-28 19:33:46 +02:00
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/golang/protobuf/protoc-gen-go
2017-05-13 10:11:39 +02:00
- go test -cover $(go list ./... | grep -v /vendor/)
2016-05-26 20:08:48 +02:00
2017-05-13 10:03:38 +02:00
test_postgres:
image: golang:1.8
environment:
- DATABASE_DRIVER=postgres
- DATABASE_CONFIG=host=postgres user=postgres dbname=postgres sslmode=disable
commands:
- go test github.com/drone/drone/store/datastore
test_mysql:
image: golang:1.8
environment:
- DATABASE_DRIVER=mysql
- DATABASE_CONFIG=root@tcp(mysql:3306)/test?parseTime=true
commands:
- go test github.com/drone/drone/store/datastore
build:
2017-03-05 10:14:24 +02:00
image: golang:1.8
2017-05-22 16:19:13 +02:00
commands: sh .drone.sh
2017-05-08 02:41:12 +02:00
secrets: [ ssh_key ]
2016-04-20 03:37:53 +02:00
when:
2017-05-12 15:46:32 +02:00
event: [ push, tag ]
2015-10-01 07:16:42 +02:00
2017-06-30 00:51:22 +02:00
publish_server:
2017-05-08 02:01:04 +02:00
image: plugins/docker
repo: drone/drone
secrets: [ docker_username, docker_password ]
2017-05-12 12:30:19 +02:00
tag: [ latest ]
2016-05-04 09:06:05 +02:00
when:
2016-10-23 23:00:55 +02:00
branch: master
2016-05-04 09:06:05 +02:00
event: push
2017-08-25 02:03:11 +02:00
publish_agent_arm:
2017-06-30 00:51:22 +02:00
image: plugins/docker
repo: drone/agent
2017-08-25 02:03:11 +02:00
dockerfile: Dockerfile.agent.linux.arm
2017-06-30 00:51:22 +02:00
secrets: [ docker_username, docker_password ]
2017-08-25 02:03:11 +02:00
tag: [ linux-arm ]
2017-06-30 00:51:22 +02:00
when:
branch: master
event: push
2017-08-25 02:03:11 +02:00
publish_agent_arm64:
2017-07-18 20:43:37 +02:00
image: plugins/docker
repo: drone/agent
2017-08-25 02:03:11 +02:00
dockerfile: Dockerfile.agent.linux.arm64
2017-07-18 20:43:37 +02:00
secrets: [ docker_username, docker_password ]
2017-08-25 02:03:11 +02:00
tag: [ linux-arm64 ]
2017-07-18 20:43:37 +02:00
when:
branch: master
event: push
2017-08-25 02:03:11 +02:00
publish_agent_amd64:
2017-07-18 20:43:37 +02:00
image: plugins/docker
repo: drone/agent
2017-08-25 02:03:11 +02:00
dockerfile: Dockerfile.agent
2017-07-18 20:43:37 +02:00
secrets: [ docker_username, docker_password ]
2017-08-25 02:03:11 +02:00
tag: [ latest ]
2017-07-18 20:43:37 +02:00
when:
branch: master
event: push
2017-06-30 00:51:22 +02:00
release_server:
2017-05-12 12:30:19 +02:00
image: plugins/docker
repo: drone/drone
secrets: [ docker_username, docker_password ]
2017-08-03 21:36:22 +02:00
tag: [ 0.8, 0.8.0 ]
2017-05-12 12:30:19 +02:00
when:
event: tag
2017-06-30 00:51:22 +02:00
release_agent:
image: plugins/docker
repo: drone/agent
dockerfile: Dockerfile.agent
secrets: [ docker_username, docker_password ]
2017-08-03 21:36:22 +02:00
tag: [ 0.8, 0.8.0 ]
2017-06-30 00:51:22 +02:00
when:
event: tag
notify:
image: plugins/gitter
2017-04-12 19:37:18 +02:00
secrets: [ gitter_webhook ]
when:
status: [ success, failure ]
2016-05-04 09:06:05 +02:00
services:
postgres:
2017-05-13 11:13:25 +02:00
image: postgres:9.6
environment:
- POSTGRES_USER=postgres
mysql:
image: mysql:5.6.27
environment:
- MYSQL_DATABASE=test
- MYSQL_ALLOW_EMPTY_PASSWORD=yes