bench-forgejo/.drone.yml

150 lines
2.8 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:
clone:
image: plugins/git
tags: true
2016-11-06 23:02:54 +05:30
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
TAGS: sqlite bindata
GOPATH: /srv/app
2016-11-06 23:02:54 +05:30
commands:
- apk -U add openssh-client
2016-11-06 23:02:54 +05:30
- make clean
- make generate
2016-11-06 23:02:54 +05:30
- make vet
2016-11-29 18:45:36 +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
environment:
CGO_ENABLED: 1
TAGS: sqlite bindata
GOPATH: /srv/app
2016-11-06 23:02:54 +05:30
commands:
- make test-mysql
2016-11-06 23:02:54 +05:30
when:
event: [ push, tag, pull_request ]
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
environment:
CGO_ENABLED: 1
TAGS: sqlite bindata
GOPATH: /srv/app
2016-11-06 23:02:54 +05:30
commands:
- make test-pgsql
2016-11-06 23:02:54 +05:30
when:
event: [ push, tag, pull_request ]
2016-11-06 23:02:54 +05:30
updater:
image: karalabe/xgo-latest:latest
pull: true
environment:
CGO_ENABLED: 1
TAGS: sqlite bindata
GOPATH: /srv/app
2016-11-06 23:02:54 +05:30
commands:
- make release
2016-11-06 23:02:54 +05:30
when:
event: [ push, tag, pull_request ]
2016-11-06 23:02:54 +05:30
coverage:
image: plugins/coverage
server: https://coverage.gitea.io
when:
event: [ push, tag, pull_request ]
docker:
image: plugins/docker
repo: gitea/gitea
tags: [ '${DRONE_TAG##v}' ]
when:
event: [ tag ]
branch: [ refs/tags/* ]
2016-11-06 23:02:54 +05:30
docker:
image: plugins/docker
repo: gitea/gitea
tags: [ '${DRONE_BRANCH##release/v}' ]
when:
event: [ push ]
branch: [ release/* ]
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
2016-11-25 15:23:48 +05:30
strip_prefix: dist/release/
source: dist/release/*
target: /gitea/${DRONE_TAG##v}
when:
event: [ tag ]
branch: [ refs/tags/* ]
release:
image: plugins/s3
path_style: true
strip_prefix: dist/release/
source: dist/release/*
target: /gitea/${DRONE_BRANCH##release/v}
2016-11-06 23:02:54 +05:30
when:
event: [ push ]
branch: [ release/* ]
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
2016-11-25 15:23:48 +05:30
strip_prefix: dist/release/
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
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, tag, pull_request ]
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, tag, pull_request ]