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