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