2019-06-14 10:13:13 +02:00
|
|
|
clone:
|
|
|
|
git:
|
|
|
|
image: plugins/git:next
|
|
|
|
|
2016-05-04 00:06:05 -07:00
|
|
|
workspace:
|
2016-07-08 15:40:29 -07:00
|
|
|
base: /go
|
2019-04-04 20:51:20 +02:00
|
|
|
path: src/github.com/laszlocph/drone-oss-08
|
2015-05-09 01:41:24 -07:00
|
|
|
|
2016-05-06 11:24:08 -07:00
|
|
|
pipeline:
|
2016-10-23 23:00:55 +02:00
|
|
|
test:
|
2019-04-23 22:24:21 +02:00
|
|
|
image: golang:1.12.4
|
2016-04-19 18:37:53 -07:00
|
|
|
commands:
|
2017-05-13 10:03:38 +02:00
|
|
|
- go get -u golang.org/x/tools/cmd/cover
|
2017-06-28 13:30:10 -04:00
|
|
|
- go get -u golang.org/x/net/context
|
|
|
|
- go get -u golang.org/x/net/context/ctxhttp
|
2017-06-28 13:33:46 -04: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 11:08:48 -07:00
|
|
|
|
2017-05-13 10:03:38 +02:00
|
|
|
test_postgres:
|
2019-04-23 22:24:21 +02:00
|
|
|
image: golang:1.12.4
|
2017-05-13 10:03:38 +02:00
|
|
|
environment:
|
|
|
|
- DATABASE_DRIVER=postgres
|
|
|
|
- DATABASE_CONFIG=host=postgres user=postgres dbname=postgres sslmode=disable
|
|
|
|
commands:
|
2019-04-04 20:51:20 +02:00
|
|
|
- go test github.com/laszlocph/drone-oss-08/store/datastore
|
2017-05-13 10:03:38 +02:00
|
|
|
|
|
|
|
test_mysql:
|
2019-04-23 22:24:21 +02:00
|
|
|
image: golang:1.12.4
|
2017-05-13 10:03:38 +02:00
|
|
|
environment:
|
|
|
|
- DATABASE_DRIVER=mysql
|
|
|
|
- DATABASE_CONFIG=root@tcp(mysql:3306)/test?parseTime=true
|
|
|
|
commands:
|
2019-04-04 20:51:20 +02:00
|
|
|
- go test github.com/laszlocph/drone-oss-08/store/datastore
|
2017-05-13 10:03:38 +02:00
|
|
|
|
|
|
|
build:
|
2019-04-23 22:24:21 +02:00
|
|
|
image: golang:1.12.4
|
2017-05-22 16:19:13 +02:00
|
|
|
commands: sh .drone.sh
|
2016-04-19 18:37:53 -07:00
|
|
|
when:
|
2017-05-12 15:46:32 +02:00
|
|
|
event: [ push, tag ]
|
2015-09-30 22:16:42 -07:00
|
|
|
|
2017-09-27 19:01:52 -07:00
|
|
|
publish_server_alpine:
|
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-server
|
2017-09-29 11:21:06 -07:00
|
|
|
dockerfile: Dockerfile.alpine
|
2017-09-27 19:01:52 -07:00
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ alpine ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-06-29 18:51:22 -04:00
|
|
|
publish_server:
|
2017-05-08 02:01:04 +02:00
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-server
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ latest ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
|
|
|
publish_agent:
|
|
|
|
image: plugins/docker
|
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
|
|
|
dockerfile: Dockerfile.agent
|
2017-05-08 02:01:04 +02:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-05-12 12:30:19 +02:00
|
|
|
tag: [ latest ]
|
2016-05-04 00:06:05 -07:00
|
|
|
when:
|
2016-10-23 23:00:55 +02:00
|
|
|
branch: master
|
2016-05-04 00:06:05 -07:00
|
|
|
event: push
|
|
|
|
|
2017-09-27 19:01:52 -07:00
|
|
|
publish_agent_alpine:
|
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
2017-09-27 19:01:52 -07:00
|
|
|
dockerfile: Dockerfile.agent.alpine
|
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ alpine ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-08-24 17:03:11 -07:00
|
|
|
publish_agent_arm:
|
2017-06-29 18:51:22 -04:00
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
2017-08-24 17:03:11 -07:00
|
|
|
dockerfile: Dockerfile.agent.linux.arm
|
2017-06-29 18:51:22 -04:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-08-24 17:03:11 -07:00
|
|
|
tag: [ linux-arm ]
|
2017-06-29 18:51:22 -04:00
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-08-24 17:03:11 -07:00
|
|
|
publish_agent_arm64:
|
2017-07-18 14:43:37 -04:00
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
2017-08-24 17:03:11 -07:00
|
|
|
dockerfile: Dockerfile.agent.linux.arm64
|
2017-07-18 14:43:37 -04:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-08-24 17:03:11 -07:00
|
|
|
tag: [ linux-arm64 ]
|
2017-07-18 14:43:37 -04:00
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-08-24 17:03:11 -07:00
|
|
|
publish_agent_amd64:
|
2017-07-18 14:43:37 -04:00
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
2017-08-24 17:03:11 -07:00
|
|
|
dockerfile: Dockerfile.agent
|
2017-07-18 14:43:37 -04:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-08-24 17:03:11 -07:00
|
|
|
tag: [ latest ]
|
2017-07-18 14:43:37 -04:00
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2017-09-29 11:21:06 -07:00
|
|
|
release_server_alpine:
|
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-server
|
2017-09-29 11:21:06 -07:00
|
|
|
dockerfile: Dockerfile.alpine
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2019-07-02 15:00:22 +02:00
|
|
|
tag: "${DRONE_TAG}-alpine"
|
2017-09-29 11:21:06 -07:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
|
|
|
release_agent_alpine:
|
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
2017-09-29 11:21:06 -07:00
|
|
|
dockerfile: Dockerfile.agent.alpine
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2019-07-02 15:00:22 +02:00
|
|
|
tag: "${DRONE_TAG}-alpine"
|
2017-09-29 11:21:06 -07:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2017-06-29 18:51:22 -04:00
|
|
|
release_server:
|
2017-05-12 12:30:19 +02:00
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-server
|
2017-05-12 12:30:19 +02:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2019-07-02 15:00:22 +02:00
|
|
|
tag: ${DRONE_TAG}
|
2017-05-12 12:30:19 +02:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2017-06-29 18:51:22 -04:00
|
|
|
release_agent:
|
|
|
|
image: plugins/docker
|
2019-04-04 21:18:28 +02:00
|
|
|
repo: laszlocloud/drone-oss-08-agent
|
2017-06-29 18:51:22 -04:00
|
|
|
dockerfile: Dockerfile.agent
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2019-07-02 15:00:22 +02:00
|
|
|
tag: ${DRONE_TAG}
|
2017-06-29 18:51:22 -04:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2016-05-04 00:06:05 -07:00
|
|
|
services:
|
2015-10-20 00:08:09 -07:00
|
|
|
postgres:
|
2017-05-13 11:13:25 +02:00
|
|
|
image: postgres:9.6
|
2019-05-30 11:15:54 +02:00
|
|
|
ports: ["5432"]
|
2015-10-20 00:08:09 -07:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
mysql:
|
|
|
|
image: mysql:5.6.27
|
2019-05-30 11:15:54 +02:00
|
|
|
ports: ["3306"]
|
2015-10-20 00:08:09 -07:00
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|