2016-05-04 07:06:05 +00:00
|
|
|
workspace:
|
2016-07-08 22:40:29 +00:00
|
|
|
base: /go
|
2016-05-04 07:06:05 +00:00
|
|
|
path: src/github.com/drone/drone
|
2015-05-09 08:41:24 +00:00
|
|
|
|
2016-05-06 18:24:08 +00:00
|
|
|
pipeline:
|
2016-10-23 21:00:55 +00:00
|
|
|
test:
|
2017-03-05 08:14:24 +00:00
|
|
|
image: golang:1.8
|
2016-04-20 01:37:53 +00:00
|
|
|
commands:
|
2017-05-13 08:03:38 +00:00
|
|
|
- go get -u github.com/drone/drone-ui/dist
|
|
|
|
- go get -u golang.org/x/tools/cmd/cover
|
2017-06-28 17:30:10 +00:00
|
|
|
- go get -u golang.org/x/net/context
|
|
|
|
- go get -u golang.org/x/net/context/ctxhttp
|
2017-06-28 17:33:46 +00:00
|
|
|
- go get -u github.com/golang/protobuf/proto
|
|
|
|
- go get -u github.com/golang/protobuf/protoc-gen-go
|
2017-05-13 08:11:39 +00:00
|
|
|
- go test -cover $(go list ./... | grep -v /vendor/)
|
2016-05-26 18:08:48 +00:00
|
|
|
|
2017-05-13 08:03:38 +00: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 08:14:24 +00:00
|
|
|
image: golang:1.8
|
2017-05-22 14:19:13 +00:00
|
|
|
commands: sh .drone.sh
|
2017-05-08 00:41:12 +00:00
|
|
|
secrets: [ ssh_key ]
|
2016-04-20 01:37:53 +00:00
|
|
|
when:
|
2017-05-12 13:46:32 +00:00
|
|
|
event: [ push, tag ]
|
2015-10-01 05:16:42 +00:00
|
|
|
|
2017-09-28 02:01:52 +00:00
|
|
|
publish_server_alpine:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/drone
|
2017-09-29 18:21:06 +00:00
|
|
|
dockerfile: Dockerfile.alpine
|
2017-09-28 02:01:52 +00:00
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ alpine ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-06-29 22:51:22 +00:00
|
|
|
publish_server:
|
2017-05-08 00:01:04 +00:00
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/drone
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2019-02-19 17:01:53 +00:00
|
|
|
tag: [ 0.8.9-pr.2597 ]
|
2016-05-04 07:06:05 +00:00
|
|
|
when:
|
2019-02-19 17:01:53 +00:00
|
|
|
branch: pr/2597
|
2016-05-04 07:06:05 +00:00
|
|
|
event: push
|
|
|
|
|
2017-09-28 02:01:52 +00:00
|
|
|
publish_agent_alpine:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/agent
|
|
|
|
dockerfile: Dockerfile.agent.alpine
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ alpine ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-08-25 00:03:11 +00:00
|
|
|
publish_agent_arm:
|
2017-06-29 22:51:22 +00:00
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/agent
|
2017-08-25 00:03:11 +00:00
|
|
|
dockerfile: Dockerfile.agent.linux.arm
|
2017-06-29 22:51:22 +00:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-08-25 00:03:11 +00:00
|
|
|
tag: [ linux-arm ]
|
2017-06-29 22:51:22 +00:00
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-08-25 00:03:11 +00:00
|
|
|
publish_agent_arm64:
|
2017-07-18 18:43:37 +00:00
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/agent
|
2017-08-25 00:03:11 +00:00
|
|
|
dockerfile: Dockerfile.agent.linux.arm64
|
2017-07-18 18:43:37 +00:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-08-25 00:03:11 +00:00
|
|
|
tag: [ linux-arm64 ]
|
2017-07-18 18:43:37 +00:00
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-08-25 00:03:11 +00:00
|
|
|
publish_agent_amd64:
|
2017-07-18 18:43:37 +00:00
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/agent
|
2017-08-25 00:03:11 +00:00
|
|
|
dockerfile: Dockerfile.agent
|
2017-07-18 18:43:37 +00:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-08-25 00:03:11 +00:00
|
|
|
tag: [ latest ]
|
2017-07-18 18:43:37 +00:00
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-09-29 18:21:06 +00:00
|
|
|
release_server_alpine:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/drone
|
|
|
|
dockerfile: Dockerfile.alpine
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ 0.8-alpine ]
|
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
|
|
|
release_agent_alpine:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/agent
|
|
|
|
dockerfile: Dockerfile.agent.alpine
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ 0.8-alpine ]
|
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2017-06-29 22:51:22 +00:00
|
|
|
release_server:
|
2017-05-12 10:30:19 +00:00
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/drone
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2018-11-15 21:02:09 +00:00
|
|
|
tag: [ 0.8, 0.8.9 ]
|
2017-05-12 10:30:19 +00:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2017-06-29 22:51:22 +00:00
|
|
|
release_agent:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: drone/agent
|
|
|
|
dockerfile: Dockerfile.agent
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2018-11-15 21:02:09 +00:00
|
|
|
tag: [ 0.8, 0.8.9 ]
|
2017-06-29 22:51:22 +00:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2016-05-04 07:06:05 +00:00
|
|
|
services:
|
2015-10-20 07:08:09 +00:00
|
|
|
postgres:
|
2017-05-13 09:13:25 +00:00
|
|
|
image: postgres:9.6
|
2015-10-20 07:08:09 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
mysql:
|
|
|
|
image: mysql:5.6.27
|
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|