2016-11-06 18:32:54 +01:00
workspace :
base : /srv/app
path : src/code.gitea.io/gitea
pipeline :
test :
2016-11-25 01:32:43 +01:00
image : webhippie/golang:edge
2016-11-06 18:32:54 +01:00
pull : true
environment :
2016-11-24 14:48:40 +01:00
CGO_ENABLED : 1
2016-12-05 16:39:45 +01:00
TAGS : sqlite bindata
2016-12-04 23:55:09 +01:00
GOPATH : /srv/app
2016-11-06 18:32:54 +01:00
commands :
2016-12-04 23:55:09 +01:00
- apk -U add openssh-client
2016-11-06 18:32:54 +01:00
- make clean
2016-12-05 16:39:45 +01:00
- make generate
2016-11-06 18:32:54 +01:00
- make vet
2016-11-29 14:15:36 +01:00
- make lint
2016-11-06 18:32:54 +01:00
- make test
- make build
2016-11-25 01:32:43 +01:00
when :
event : [ push, tag, pull_request ]
2016-11-06 18:32:54 +01:00
2016-11-24 14:48:40 +01:00
test-mysql :
2016-11-25 01:32:43 +01:00
image : webhippie/golang:edge
2016-11-06 18:32:54 +01:00
pull : true
2016-12-04 23:55:09 +01:00
environment :
CGO_ENABLED : 1
2016-12-05 16:39:45 +01:00
TAGS : sqlite bindata
2016-12-04 23:55:09 +01:00
GOPATH : /srv/app
2016-11-06 18:32:54 +01:00
commands :
2016-12-04 23:55:09 +01:00
- make test-mysql
2016-11-06 18:32:54 +01:00
when :
2016-11-25 01:32:43 +01:00
event : [ push ]
2016-11-06 18:32:54 +01:00
2016-11-24 14:48:40 +01:00
test-pgsql :
2016-11-25 01:32:43 +01:00
image : webhippie/golang:edge
2016-11-06 18:32:54 +01:00
pull : true
2016-12-04 23:55:09 +01:00
environment :
CGO_ENABLED : 1
2016-12-05 16:39:45 +01:00
TAGS : sqlite bindata
2016-12-04 23:55:09 +01:00
GOPATH : /srv/app
2016-11-06 18:32:54 +01:00
commands :
2016-12-04 23:55:09 +01:00
- make test-pgsql
2016-11-06 18:32:54 +01:00
when :
2016-11-25 01:32:43 +01:00
event : [ push ]
2016-11-06 18:32:54 +01:00
updater :
image : karalabe/xgo-latest:latest
pull : true
2016-12-04 23:55:09 +01:00
environment :
CGO_ENABLED : 1
2016-12-05 16:39:45 +01:00
TAGS : sqlite bindata
2016-12-04 23:55:09 +01:00
GOPATH : /srv/app
2016-11-06 18:32:54 +01:00
commands :
2016-12-01 08:28:43 +01:00
- make release
2016-11-06 18:32:54 +01:00
when :
event : [ push, tag ]
branch : [ master, refs/tags/* ]
2016-12-16 09:49:54 -02:00
coverage :
image : plugins/coverage
server : https://coverage.gitea.io
when :
event : [ push, tag, pull_request ]
2016-12-04 23:55:09 +01:00
2016-11-28 14:15:14 +01:00
docker :
image : plugins/docker
repo : gitea/gitea
tags : [ '${TAG}' ]
when :
event : [ tag ]
branch : [ refs/tags/* ]
2016-11-06 18:32:54 +01:00
2016-11-28 14:15:14 +01:00
docker :
image : plugins/docker
repo : gitea/gitea
tags : [ 'latest' ]
when :
event : [ push ]
branch : [ master ]
2016-11-06 18:32:54 +01:00
2016-11-24 14:48:40 +01:00
release :
2016-11-06 18:32:54 +01:00
image : plugins/s3
path_style : true
2016-11-25 10:53:48 +01:00
strip_prefix : dist/release/
source : dist/release/*
2016-11-25 01:32:43 +01:00
target : /gitea/master
2016-11-06 18:32:54 +01:00
when :
2016-11-25 01:32:43 +01:00
event : [ push ]
branch : [ master ]
2016-11-06 18:32:54 +01:00
2016-11-24 14:48:40 +01:00
release :
2016-11-06 18:32:54 +01:00
image : plugins/s3
path_style : true
2016-11-25 10:53:48 +01:00
strip_prefix : dist/release/
source : dist/release/*
2016-11-25 01:32:43 +01:00
target : /gitea/$$TAG
2016-11-06 18:32:54 +01:00
when :
2016-11-25 01:32:43 +01:00
event : [ tag ]
branch : [ refs/tags/* ]
2016-11-06 18:32:54 +01:00
github :
image : plugins/github-release
files :
- dist/release/*
when :
2016-11-25 01:32:43 +01:00
event : [ tag ]
branch : [ refs/tags/* ]
2016-11-06 18:32:54 +01:00
gitter :
image : plugins/gitter
services :
2016-11-24 14:48:40 +01:00
mysql :
2016-11-06 18:32:54 +01:00
image : mysql:5.7
environment :
- MYSQL_DATABASE=test
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
when :
2016-11-25 01:32:43 +01:00
event : [ push ]
2016-11-06 18:32:54 +01:00
2016-11-24 14:48:40 +01:00
pgsql :
2016-11-06 18:32:54 +01:00
image : postgres:9.5
environment :
- POSTGRES_DB=test
when :
2016-11-25 01:32:43 +01:00
event : [ push ]