2019-06-14 10:13:13 +02:00
|
|
|
clone:
|
|
|
|
git:
|
|
|
|
image: plugins/git:next
|
|
|
|
|
2016-05-06 20:24:08 +02:00
|
|
|
pipeline:
|
2016-10-23 23:00:55 +02:00
|
|
|
test:
|
2019-11-14 12:42:35 +02:00
|
|
|
image: golang:1.13.3
|
2019-11-12 15:31:51 +02:00
|
|
|
group: test
|
2016-04-20 03:37:53 +02:00
|
|
|
commands:
|
2019-10-24 11:17:07 +02:00
|
|
|
- go test -cover -timeout 30s $(go list ./...)
|
2016-05-26 20:08:48 +02:00
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
test-frontend:
|
|
|
|
image: node:10.17.0-stretch
|
|
|
|
group: test
|
|
|
|
commands:
|
|
|
|
- (cd web/; yarn install)
|
|
|
|
- (cd web/; yarn run lesshint)
|
|
|
|
- (cd web/; yarn run lint --quiet)
|
|
|
|
- make test-frontend
|
|
|
|
|
|
|
|
test-postgres:
|
2019-11-14 12:42:35 +02:00
|
|
|
image: golang:1.13.3
|
2019-11-12 15:31:51 +02:00
|
|
|
group: db-test
|
2017-05-13 10:03:38 +02:00
|
|
|
environment:
|
|
|
|
- DATABASE_DRIVER=postgres
|
|
|
|
- DATABASE_CONFIG=host=postgres user=postgres dbname=postgres sslmode=disable
|
|
|
|
commands:
|
2019-09-14 14:11:24 +02:00
|
|
|
- go test -timeout 30s github.com/laszlocph/woodpecker/store/datastore
|
2017-05-13 10:03:38 +02:00
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
test-mysql:
|
2019-11-14 12:42:35 +02:00
|
|
|
image: golang:1.13.3
|
2019-11-12 15:31:51 +02:00
|
|
|
group: db-test
|
2017-05-13 10:03:38 +02:00
|
|
|
environment:
|
|
|
|
- DATABASE_DRIVER=mysql
|
|
|
|
- DATABASE_CONFIG=root@tcp(mysql:3306)/test?parseTime=true
|
|
|
|
commands:
|
2019-09-14 14:11:24 +02:00
|
|
|
- go test -timeout 30s github.com/laszlocph/woodpecker/store/datastore
|
2017-05-13 10:03:38 +02:00
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
build-frontend:
|
2019-11-12 15:27:39 +02:00
|
|
|
image: node:10.17.0-stretch
|
|
|
|
commands:
|
|
|
|
- make build-frontend
|
|
|
|
|
2017-05-13 10:03:38 +02:00
|
|
|
build:
|
2019-11-14 12:42:35 +02:00
|
|
|
image: golang:1.13.3
|
2019-11-12 15:31:51 +02:00
|
|
|
commands:
|
|
|
|
- go get github.com/laszlocph/togo
|
|
|
|
- (cd web/; go generate ./...)
|
2019-11-12 22:55:01 +02:00
|
|
|
- ./.drone.sh
|
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
|
|
|
|
2020-05-19 13:39:39 +02:00
|
|
|
# publish-server-alpine:
|
|
|
|
# image: plugins/docker
|
|
|
|
# repo: laszlocloud/woodpecker-server
|
|
|
|
# dockerfile: Dockerfile.alpine
|
|
|
|
# secrets: [ docker_username, docker_password ]
|
|
|
|
# tag: [ alpine ]
|
|
|
|
# when:
|
|
|
|
# branch: master
|
|
|
|
# event: push
|
2017-09-28 04:01:52 +02:00
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
publish-server:
|
2017-05-08 02:01:04 +02:00
|
|
|
image: plugins/docker
|
2019-08-27 13:01:29 +02:00
|
|
|
repo: laszlocloud/woodpecker-server
|
2019-04-04 21:18:28 +02:00
|
|
|
secrets: [ docker_username, docker_password ]
|
|
|
|
tag: [ latest ]
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
publish-agent:
|
2019-04-04 21:18:28 +02:00
|
|
|
image: plugins/docker
|
2019-08-27 13:01:29 +02:00
|
|
|
repo: laszlocloud/woodpecker-agent
|
2019-04-04 21:18:28 +02:00
|
|
|
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 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
|
|
|
|
|
2020-05-19 13:39:39 +02:00
|
|
|
# publish-agent-alpine:
|
|
|
|
# image: plugins/docker
|
|
|
|
# repo: laszlocloud/woodpecker-agent
|
|
|
|
# dockerfile: Dockerfile.agent.alpine
|
|
|
|
# secrets: [ docker_username, docker_password ]
|
|
|
|
# tag: [ alpine ]
|
|
|
|
# when:
|
|
|
|
# branch: master
|
|
|
|
# event: push
|
2017-09-28 04:01:52 +02:00
|
|
|
|
2020-05-20 09:36:10 +02:00
|
|
|
# release-server-alpine:
|
|
|
|
# image: plugins/docker
|
|
|
|
# repo: laszlocloud/woodpecker-server
|
|
|
|
# dockerfile: Dockerfile.alpine
|
|
|
|
# secrets: [ docker_username, docker_password ]
|
|
|
|
# tag: "${DRONE_TAG}-alpine"
|
|
|
|
# when:
|
|
|
|
# event: tag
|
|
|
|
#
|
|
|
|
# release-agent-alpine:
|
|
|
|
# image: plugins/docker
|
|
|
|
# repo: laszlocloud/woodpecker-agent
|
|
|
|
# dockerfile: Dockerfile.agent.alpine
|
|
|
|
# secrets: [ docker_username, docker_password ]
|
|
|
|
# tag: "${DRONE_TAG}-alpine"
|
|
|
|
# when:
|
|
|
|
# event: tag
|
2017-09-29 20:21:06 +02:00
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
release-server:
|
2017-05-12 12:30:19 +02:00
|
|
|
image: plugins/docker
|
2019-08-27 13:01:29 +02:00
|
|
|
repo: laszlocloud/woodpecker-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
|
|
|
|
|
2019-11-12 15:31:51 +02:00
|
|
|
release-agent:
|
2017-06-30 00:51:22 +02:00
|
|
|
image: plugins/docker
|
2019-08-27 13:01:29 +02:00
|
|
|
repo: laszlocloud/woodpecker-agent
|
2017-06-30 00:51:22 +02:00
|
|
|
dockerfile: Dockerfile.agent
|
|
|
|
secrets: [ docker_username, docker_password ]
|
2019-07-02 15:00:22 +02:00
|
|
|
tag: ${DRONE_TAG}
|
2017-06-30 00:51:22 +02:00
|
|
|
when:
|
|
|
|
event: tag
|
|
|
|
|
2016-05-04 09:06:05 +02:00
|
|
|
services:
|
2015-10-20 09:08:09 +02: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 09:08:09 +02:00
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
2020-04-28 21:41:05 +02:00
|
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
2015-10-20 09:08:09 +02:00
|
|
|
mysql:
|
|
|
|
image: mysql:5.6.27
|
2019-05-30 11:15:54 +02:00
|
|
|
ports: ["3306"]
|
2015-10-20 09:08:09 +02:00
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|