bench-forgejo/.drone.yml

122 lines
2.2 KiB
YAML
Raw Normal View History

2016-11-06 23:02:54 +05:30
workspace:
base: /srv/app
path: src/code.gitea.io/gitea
pipeline:
test:
image: webhippie/golang:edge
2016-11-06 23:02:54 +05:30
pull: true
environment:
2016-11-24 19:18:40 +05:30
CGO_ENABLED: 1
2016-11-06 23:02:54 +05:30
TAGS: cert sqlite pam miniwinsvc
commands:
- apk -U add linux-pam-dev openssh-client
- make clean
- make vet
2016-11-24 19:18:40 +05:30
# - make lint
2016-11-06 23:02:54 +05:30
- make test
- make build
when:
event: [ push, tag, pull_request ]
2016-11-06 23:02:54 +05:30
2016-11-24 19:18:40 +05:30
test-mysql:
image: webhippie/golang:edge
2016-11-06 23:02:54 +05:30
pull: true
commands:
- make test-mysql
when:
event: [ push ]
2016-11-06 23:02:54 +05:30
2016-11-24 19:18:40 +05:30
test-pgsql:
image: webhippie/golang:edge
2016-11-06 23:02:54 +05:30
pull: true
commands:
- make test-pgsql
when:
event: [ push ]
coverage:
image: plugins/coverage
server: https://coverage.gitea.io
when:
event: [ push, tag, pull_request ]
2016-11-06 23:02:54 +05:30
updater:
image: karalabe/xgo-latest:latest
pull: true
commands:
- make publish
when:
event: [ push, tag ]
branch: [ master, refs/tags/* ]
2016-11-25 14:19:12 +05:30
# docker:
# image: plugins/docker
# repo: gitea/gitea
# tags: [ '${TAG}' ]
# when:
# event: [ tag ]
# branch: [ refs/tags/* ]
2016-11-06 23:02:54 +05:30
2016-11-25 14:19:12 +05:30
# docker:
# image: plugins/docker
# repo: gitea/gitea
# tags: [ 'latest' ]
# when:
# event: [ push ]
# branch: [ master ]
2016-11-06 23:02:54 +05:30
2016-11-24 19:18:40 +05:30
release:
2016-11-06 23:02:54 +05:30
image: plugins/s3
path_style: true
source: dist/release/
target: /gitea/master
2016-11-06 23:02:54 +05:30
when:
event: [ push ]
branch: [ master ]
2016-11-06 23:02:54 +05:30
2016-11-24 19:18:40 +05:30
release:
2016-11-06 23:02:54 +05:30
image: plugins/s3
path_style: true
source: dist/release/
target: /gitea/$$TAG
2016-11-06 23:02:54 +05:30
when:
event: [ tag ]
branch: [ refs/tags/* ]
2016-11-06 23:02:54 +05:30
2016-11-24 19:18:40 +05:30
latest:
2016-11-06 23:02:54 +05:30
image: plugins/s3
path_style: true
source: dist/latest/
target: /gitea/latest
2016-11-06 23:02:54 +05:30
when:
event: [ tag ]
branch: [ refs/tags/* ]
2016-11-06 23:02:54 +05:30
github:
image: plugins/github-release
files:
- dist/release/*
when:
event: [ tag ]
branch: [ refs/tags/* ]
2016-11-06 23:02:54 +05:30
gitter:
image: plugins/gitter
services:
2016-11-24 19:18:40 +05:30
mysql:
2016-11-06 23:02:54 +05:30
image: mysql:5.7
environment:
- MYSQL_DATABASE=test
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
when:
event: [ push ]
2016-11-06 23:02:54 +05:30
2016-11-24 19:18:40 +05:30
pgsql:
2016-11-06 23:02:54 +05:30
image: postgres:9.5
environment:
- POSTGRES_DB=test
when:
event: [ push ]