2016-11-06 10:32:54 -07:00
|
|
|
workspace:
|
2018-05-07 08:49:57 -06:00
|
|
|
base: /go
|
2016-11-06 10:32:54 -07:00
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
2017-09-07 11:22:15 -06:00
|
|
|
clone:
|
|
|
|
git:
|
2018-06-20 10:03:22 -06:00
|
|
|
image: plugins/git:next
|
2017-04-29 22:32:30 -06:00
|
|
|
depth: 50
|
2017-01-05 03:13:02 -07:00
|
|
|
tags: true
|
|
|
|
|
2017-09-07 11:22:15 -06:00
|
|
|
pipeline:
|
2017-11-01 00:14:49 -06:00
|
|
|
download_translations:
|
|
|
|
image: jonasfranz/crowdin
|
|
|
|
pull: true
|
|
|
|
secrets: [ crowdin_key ]
|
|
|
|
project_identifier: gitea
|
|
|
|
ignore_branch: true
|
|
|
|
download: true
|
|
|
|
export_dir: options/locale/
|
|
|
|
when:
|
|
|
|
event: [ push ]
|
|
|
|
branch: [ master ]
|
2017-11-01 02:48:40 -06:00
|
|
|
|
2017-11-01 06:52:48 -06:00
|
|
|
update-translations:
|
2018-08-29 07:43:58 -06:00
|
|
|
image: alpine:3.7
|
2017-11-01 06:52:48 -06:00
|
|
|
commands:
|
2017-11-01 09:46:28 -06:00
|
|
|
- mv ./options/locale/locale_en-US.ini ./options/
|
2017-11-01 06:52:48 -06:00
|
|
|
- sed -i -e 's/="/=/g' -e 's/"$$//g' ./options/locale/*.ini
|
2017-11-02 17:33:43 -06:00
|
|
|
- sed -i -e 's/\\\\"/"/g' ./options/locale/*.ini
|
2017-11-01 09:46:28 -06:00
|
|
|
- mv ./options/locale_en-US.ini ./options/locale/
|
2017-11-01 06:52:48 -06:00
|
|
|
when:
|
|
|
|
event: [ push ]
|
|
|
|
branch: [ master ]
|
|
|
|
|
2017-11-01 00:14:49 -06:00
|
|
|
git_push:
|
|
|
|
image: appleboy/drone-git-push
|
|
|
|
pull: true
|
|
|
|
secrets: [ git_push_ssh_key ]
|
2017-11-01 03:13:47 -06:00
|
|
|
remote: git@github.com:go-gitea/gitea.git
|
2017-11-01 00:14:49 -06:00
|
|
|
force: false
|
|
|
|
commit: true
|
|
|
|
commit_message: "[skip ci] Updated translations via Crowdin"
|
2017-11-04 05:53:59 -06:00
|
|
|
author_name: GiteaBot
|
|
|
|
author_email: teabot@gitea.io
|
2017-11-01 00:14:49 -06:00
|
|
|
when:
|
|
|
|
event: [ push ]
|
|
|
|
branch: [ master ]
|
2017-11-01 02:48:40 -06:00
|
|
|
|
2017-09-24 15:49:32 -06:00
|
|
|
pre-build:
|
|
|
|
image: webhippie/nodejs:latest
|
|
|
|
pull: true
|
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
- make stylesheets-check
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
2017-11-01 02:48:40 -06:00
|
|
|
|
2017-12-11 02:42:13 -07:00
|
|
|
build-without-gcc:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.10 # this step is kept as the lowest version of golang that we support
|
2017-12-11 02:42:13 -07:00
|
|
|
pull: true
|
|
|
|
commands:
|
|
|
|
- go build -o gitea_no_gcc # test if build succeeds without the sqlite tag
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
|
|
|
|
2017-06-01 12:07:24 -06:00
|
|
|
build:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.12
|
2016-11-06 10:32:54 -07:00
|
|
|
pull: true
|
|
|
|
environment:
|
2018-10-23 05:47:59 -06:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2016-11-06 10:32:54 -07:00
|
|
|
commands:
|
|
|
|
- make clean
|
2016-12-05 08:39:45 -07:00
|
|
|
- make generate
|
2016-11-06 10:32:54 -07:00
|
|
|
- make vet
|
2016-11-29 06:15:36 -07:00
|
|
|
- make lint
|
2017-09-20 19:34:32 -06:00
|
|
|
- make fmt-check
|
2018-04-20 03:13:50 -06:00
|
|
|
- make swagger-check
|
2018-08-11 18:08:17 -06:00
|
|
|
- make swagger-validate
|
2017-06-05 01:49:46 -06:00
|
|
|
- make misspell-check
|
2017-04-24 08:31:46 -06:00
|
|
|
- make test-vendor
|
2016-11-06 10:32:54 -07:00
|
|
|
- make build
|
2016-11-24 17:32:43 -07:00
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
unit-test:
|
|
|
|
image: golang:1.12
|
2017-06-01 12:07:24 -06:00
|
|
|
pull: true
|
2017-09-07 11:22:15 -06:00
|
|
|
group: test
|
2017-06-01 12:07:24 -06:00
|
|
|
environment:
|
2018-10-23 05:47:59 -06:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2017-09-13 06:57:55 -06:00
|
|
|
commands:
|
|
|
|
- make unit-test-coverage
|
|
|
|
when:
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
branch: [ master ]
|
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
release-test:
|
|
|
|
image: golang:1.12
|
2017-12-09 03:17:40 -07:00
|
|
|
pull: true
|
|
|
|
group: test
|
|
|
|
environment:
|
2018-10-23 05:47:59 -06:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2017-12-09 03:17:40 -07:00
|
|
|
commands:
|
|
|
|
- make test
|
|
|
|
when:
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
branch: [ release/* ]
|
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
tag-test:
|
|
|
|
image: golang:1.12
|
2017-09-13 06:57:55 -06:00
|
|
|
pull: true
|
|
|
|
group: test
|
|
|
|
environment:
|
|
|
|
TAGS: bindata
|
2017-06-01 12:07:24 -06:00
|
|
|
commands:
|
2017-09-11 23:51:12 -06:00
|
|
|
- make test
|
2017-06-01 12:07:24 -06:00
|
|
|
when:
|
2017-09-13 06:57:55 -06:00
|
|
|
event: [ tag ]
|
2017-06-01 12:07:24 -06:00
|
|
|
|
2018-10-28 19:54:13 -06:00
|
|
|
test-sqlite:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.12
|
2018-10-28 19:54:13 -06:00
|
|
|
pull: true
|
|
|
|
group: test
|
|
|
|
environment:
|
|
|
|
TAGS: bindata
|
|
|
|
commands:
|
|
|
|
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
|
|
|
- apt-get install -y git-lfs
|
|
|
|
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.sqlite.test)' | sh)) &
|
2019-01-28 09:18:52 -07:00
|
|
|
- make test-sqlite-migration
|
2018-10-28 19:54:13 -06:00
|
|
|
- make test-sqlite
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
2017-04-25 01:24:51 -06:00
|
|
|
|
2017-09-13 06:57:55 -06:00
|
|
|
test-mysql:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.12
|
2017-09-13 06:57:55 -06:00
|
|
|
pull: true
|
|
|
|
group: test
|
|
|
|
environment:
|
|
|
|
TAGS: bindata
|
2018-05-11 01:55:32 -06:00
|
|
|
TEST_LDAP: "1"
|
2017-09-13 06:57:55 -06:00
|
|
|
commands:
|
2018-05-07 08:49:57 -06:00
|
|
|
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
|
|
|
- apt-get install -y git-lfs
|
2019-01-28 09:18:52 -07:00
|
|
|
- make test-mysql-migration
|
2017-09-13 06:57:55 -06:00
|
|
|
- make integration-test-coverage
|
|
|
|
when:
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
branch: [ master ]
|
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
tag-test-mysql:
|
|
|
|
image: golang:1.12
|
2016-11-06 10:32:54 -07:00
|
|
|
pull: true
|
2017-09-07 11:22:15 -06:00
|
|
|
group: test
|
2016-12-04 15:55:09 -07:00
|
|
|
environment:
|
2017-03-07 06:49:24 -07:00
|
|
|
TAGS: bindata
|
2018-05-11 01:55:32 -06:00
|
|
|
TEST_LDAP: "1"
|
2016-11-06 10:32:54 -07:00
|
|
|
commands:
|
2018-05-07 08:49:57 -06:00
|
|
|
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
|
|
|
- apt-get install -y git-lfs
|
2018-10-28 19:54:13 -06:00
|
|
|
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.test)' | sh)) &
|
2019-01-28 09:18:52 -07:00
|
|
|
- make test-mysql-migration
|
2017-04-30 00:30:12 -06:00
|
|
|
- make test-mysql
|
2016-11-06 10:32:54 -07:00
|
|
|
when:
|
2017-09-13 06:57:55 -06:00
|
|
|
event: [ tag ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2019-03-17 13:17:18 -06:00
|
|
|
test-mysql8:
|
|
|
|
image: golang:1.11
|
|
|
|
pull: true
|
|
|
|
group: test
|
|
|
|
environment:
|
|
|
|
TAGS: bindata
|
|
|
|
TEST_LDAP: "1"
|
|
|
|
commands:
|
|
|
|
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
|
|
|
- apt-get install -y git-lfs
|
|
|
|
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.test)' | sh)) &
|
|
|
|
- make test-mysql8-migration
|
|
|
|
- make test-mysql8
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
|
|
|
|
2016-11-24 06:48:40 -07:00
|
|
|
test-pgsql:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.12
|
2016-11-06 10:32:54 -07:00
|
|
|
pull: true
|
2017-09-07 11:22:15 -06:00
|
|
|
group: test
|
2016-12-04 15:55:09 -07:00
|
|
|
environment:
|
2017-03-07 06:49:24 -07:00
|
|
|
TAGS: bindata
|
2018-05-11 01:55:32 -06:00
|
|
|
TEST_LDAP: "1"
|
2016-11-06 10:32:54 -07:00
|
|
|
commands:
|
2018-05-07 08:49:57 -06:00
|
|
|
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
|
|
|
- apt-get install -y git-lfs
|
2018-10-28 19:54:13 -06:00
|
|
|
- (sleep 1200 && (echo 'kill -ABRT $(pidof gitea) $(pidof integrations.test)' | sh)) &
|
2019-01-28 09:18:52 -07:00
|
|
|
- make test-pgsql-migration
|
2017-04-30 00:30:12 -06:00
|
|
|
- make test-pgsql
|
2016-11-06 10:32:54 -07:00
|
|
|
when:
|
2017-02-01 20:56:08 -07:00
|
|
|
event: [ push, tag, pull_request ]
|
2016-11-24 17:32:43 -07:00
|
|
|
|
2018-12-11 18:01:41 -07:00
|
|
|
test-mssql:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.12
|
2018-12-11 18:01:41 -07:00
|
|
|
pull: true
|
|
|
|
group: test
|
|
|
|
environment:
|
|
|
|
TAGS: bindata
|
|
|
|
TEST_LDAP: "1"
|
|
|
|
commands:
|
|
|
|
- curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
|
|
|
|
- apt-get install -y git-lfs
|
2019-01-28 09:18:52 -07:00
|
|
|
- make test-mssql-migration
|
2018-12-11 18:01:41 -07:00
|
|
|
- make test-mssql
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
|
|
|
|
2019-03-19 00:54:34 -06:00
|
|
|
# bench-sqlite:
|
|
|
|
# image: golang:1.12
|
|
|
|
# pull: true
|
|
|
|
# group: bench
|
|
|
|
# commands:
|
|
|
|
# - make bench-sqlite
|
|
|
|
# when:
|
|
|
|
# event: [ tag ]
|
2019-02-11 10:09:50 -07:00
|
|
|
|
2019-03-19 00:54:34 -06:00
|
|
|
# bench-mysql:
|
|
|
|
# image: golang:1.12
|
|
|
|
# pull: true
|
|
|
|
# group: bench
|
|
|
|
# commands:
|
|
|
|
# - make bench-mysql
|
|
|
|
# when:
|
|
|
|
# event: [ tag ]
|
2019-02-11 10:09:50 -07:00
|
|
|
|
2019-03-19 00:54:34 -06:00
|
|
|
# bench-mssql:
|
|
|
|
# image: golang:1.12
|
|
|
|
# pull: true
|
|
|
|
# group: bench
|
|
|
|
# commands:
|
|
|
|
# - make bench-mssql
|
|
|
|
# when:
|
|
|
|
# event: [ tag ]
|
2019-02-11 10:09:50 -07:00
|
|
|
|
2019-03-19 00:54:34 -06:00
|
|
|
# bench-pgsql:
|
|
|
|
# image: golang:1.12
|
|
|
|
# pull: true
|
|
|
|
# group: bench
|
|
|
|
# commands:
|
|
|
|
# - make bench-pgsql
|
|
|
|
# when:
|
|
|
|
# event: [ tag ]
|
2019-02-11 10:09:50 -07:00
|
|
|
|
2017-09-13 06:57:55 -06:00
|
|
|
generate-coverage:
|
2019-02-26 16:07:35 -07:00
|
|
|
image: golang:1.12
|
2017-09-13 06:57:55 -06:00
|
|
|
pull: true
|
|
|
|
environment:
|
|
|
|
TAGS: bindata
|
|
|
|
commands:
|
|
|
|
- make coverage
|
|
|
|
when:
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
branch: [ master ]
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
image: robertstettner/drone-codecov
|
|
|
|
secrets: [ codecov_token ]
|
|
|
|
files:
|
|
|
|
- coverage.all
|
|
|
|
when:
|
|
|
|
event: [ push, pull_request ]
|
|
|
|
branch: [ master ]
|
2017-09-07 11:22:15 -06:00
|
|
|
|
2017-03-07 06:49:24 -07:00
|
|
|
static:
|
2019-02-14 11:20:11 -07:00
|
|
|
image: techknowlogick/xgo:latest
|
2017-03-07 06:49:24 -07:00
|
|
|
pull: true
|
|
|
|
environment:
|
2018-10-23 05:47:59 -06:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2016-11-06 10:32:54 -07:00
|
|
|
commands:
|
2018-05-22 10:12:10 -06:00
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
2016-12-01 00:28:43 -07:00
|
|
|
- make release
|
2016-11-06 10:32:54 -07:00
|
|
|
when:
|
2017-06-08 19:52:23 -06:00
|
|
|
event: [ push, tag ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2018-07-11 08:43:33 -06:00
|
|
|
build-docs:
|
2017-11-26 14:44:32 -07:00
|
|
|
image: webhippie/hugo:latest
|
|
|
|
pull: true
|
|
|
|
commands:
|
|
|
|
- cd docs
|
|
|
|
- make trans-copy
|
|
|
|
- make clean
|
|
|
|
- make build
|
|
|
|
|
2018-07-11 08:43:33 -06:00
|
|
|
publish-docs:
|
|
|
|
image: lucap/drone-netlify:latest
|
2017-11-26 14:44:32 -07:00
|
|
|
pull: true
|
2018-07-11 08:43:33 -06:00
|
|
|
secrets: [ netlify_token ]
|
2018-07-11 15:45:03 -06:00
|
|
|
site_id: d2260bae-7861-4c02-8646-8f6440b12672
|
2018-07-11 08:43:33 -06:00
|
|
|
path: docs/public/
|
2017-11-26 14:44:32 -07:00
|
|
|
when:
|
|
|
|
event: [ push ]
|
|
|
|
branch: [ master ]
|
|
|
|
|
2019-02-22 18:16:34 -07:00
|
|
|
docker-dryrun:
|
|
|
|
image: plugins/docker:17.12
|
|
|
|
pull: true
|
|
|
|
repo: gitea/gitea
|
|
|
|
cache_from: gitea/gitea
|
|
|
|
dry_run: true
|
|
|
|
when:
|
|
|
|
event: [ pull_request ]
|
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
release-docker:
|
2018-04-29 19:47:39 -06:00
|
|
|
image: plugins/docker:17.12
|
2017-07-11 01:16:18 -06:00
|
|
|
pull: true
|
2017-09-07 11:22:15 -06:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2016-12-23 16:00:48 -07:00
|
|
|
repo: gitea/gitea
|
|
|
|
tags: [ '${DRONE_BRANCH##release/v}' ]
|
2019-02-22 18:16:34 -07:00
|
|
|
cache_from: gitea/gitea
|
2016-12-23 16:00:48 -07:00
|
|
|
when:
|
|
|
|
event: [ push ]
|
|
|
|
branch: [ release/* ]
|
|
|
|
|
2016-11-28 06:15:14 -07:00
|
|
|
docker:
|
2018-04-29 19:47:39 -06:00
|
|
|
image: plugins/docker:17.12
|
2018-05-01 15:33:49 -06:00
|
|
|
secrets: [ docker_username, docker_password ]
|
2017-07-11 01:16:18 -06:00
|
|
|
pull: true
|
2016-11-28 06:15:14 -07:00
|
|
|
repo: gitea/gitea
|
2019-02-22 18:16:34 -07:00
|
|
|
cache_from: gitea/gitea
|
2018-04-29 19:47:39 -06:00
|
|
|
default_tags: true
|
2016-11-28 06:15:14 -07:00
|
|
|
when:
|
2018-04-29 19:47:39 -06:00
|
|
|
event: [ push, tag ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2018-06-24 00:40:30 -06:00
|
|
|
gpg-sign:
|
|
|
|
image: plugins/gpgsign:1
|
|
|
|
pull: true
|
|
|
|
secrets: [ gpgsign_key, gpgsign_passphrase ]
|
|
|
|
detach_sign: true
|
|
|
|
files:
|
|
|
|
- dist/release/*
|
|
|
|
excludes:
|
2018-06-24 05:10:11 -06:00
|
|
|
- dist/release/*.sha256
|
2018-06-24 00:40:30 -06:00
|
|
|
when:
|
|
|
|
event: [ push, tag ]
|
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
tag-release:
|
2017-09-07 11:22:15 -06:00
|
|
|
image: plugins/s3:1
|
|
|
|
pull: true
|
2017-09-13 03:20:15 -06:00
|
|
|
secrets: [ aws_access_key_id, aws_secret_access_key ]
|
2017-09-15 00:45:38 -06:00
|
|
|
bucket: releases
|
2018-11-16 09:44:13 -07:00
|
|
|
acl: public-read
|
2017-09-07 11:22:15 -06:00
|
|
|
endpoint: https://storage.gitea.io
|
2016-11-06 10:32:54 -07:00
|
|
|
path_style: true
|
2016-11-25 02:53:48 -07:00
|
|
|
strip_prefix: dist/release/
|
|
|
|
source: dist/release/*
|
2016-12-23 16:00:48 -07:00
|
|
|
target: /gitea/${DRONE_TAG##v}
|
|
|
|
when:
|
|
|
|
event: [ tag ]
|
|
|
|
|
2019-02-26 16:07:35 -07:00
|
|
|
release-branch-release:
|
2017-09-07 11:22:15 -06:00
|
|
|
image: plugins/s3:1
|
|
|
|
pull: true
|
2017-09-13 03:20:15 -06:00
|
|
|
secrets: [ aws_access_key_id, aws_secret_access_key ]
|
2017-09-15 00:45:38 -06:00
|
|
|
bucket: releases
|
2018-11-16 09:44:13 -07:00
|
|
|
acl: public-read
|
2017-09-07 11:22:15 -06:00
|
|
|
endpoint: https://storage.gitea.io
|
2016-12-23 16:00:48 -07:00
|
|
|
path_style: true
|
|
|
|
strip_prefix: dist/release/
|
|
|
|
source: dist/release/*
|
|
|
|
target: /gitea/${DRONE_BRANCH##release/v}
|
2016-11-06 10:32:54 -07:00
|
|
|
when:
|
2016-11-24 17:32:43 -07:00
|
|
|
event: [ push ]
|
2016-12-23 16:00:48 -07:00
|
|
|
branch: [ release/* ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2016-11-24 06:48:40 -07:00
|
|
|
release:
|
2017-09-07 11:22:15 -06:00
|
|
|
image: plugins/s3:1
|
|
|
|
pull: true
|
2017-09-13 03:20:15 -06:00
|
|
|
secrets: [ aws_access_key_id, aws_secret_access_key ]
|
2017-09-15 00:45:38 -06:00
|
|
|
bucket: releases
|
2018-11-16 09:44:13 -07:00
|
|
|
acl: public-read
|
2017-09-07 11:22:15 -06:00
|
|
|
endpoint: https://storage.gitea.io
|
2016-11-06 10:32:54 -07:00
|
|
|
path_style: true
|
2016-11-25 02:53:48 -07:00
|
|
|
strip_prefix: dist/release/
|
|
|
|
source: dist/release/*
|
2016-12-23 16:00:48 -07:00
|
|
|
target: /gitea/master
|
2016-11-06 10:32:54 -07:00
|
|
|
when:
|
2016-12-23 16:00:48 -07:00
|
|
|
event: [ push ]
|
|
|
|
branch: [ master ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2017-11-01 00:14:49 -06:00
|
|
|
github:
|
|
|
|
image: plugins/github-release:1
|
|
|
|
pull: true
|
|
|
|
secrets: [ github_token ]
|
|
|
|
files:
|
|
|
|
- dist/release/*
|
|
|
|
when:
|
|
|
|
event: [ tag ]
|
|
|
|
|
|
|
|
upload_translations:
|
2017-09-23 10:08:42 -06:00
|
|
|
image: jonasfranz/crowdin
|
|
|
|
pull: true
|
|
|
|
secrets: [ crowdin_key ]
|
|
|
|
project_identifier: gitea
|
2017-09-25 01:59:19 -06:00
|
|
|
ignore_branch: true
|
2017-11-01 00:14:49 -06:00
|
|
|
download: false
|
2017-09-23 10:08:42 -06:00
|
|
|
files:
|
|
|
|
locale_en-US.ini: options/locale/locale_en-US.ini
|
|
|
|
when:
|
|
|
|
event: [ push ]
|
|
|
|
branch: [ master ]
|
|
|
|
|
2017-06-14 20:47:42 -06:00
|
|
|
discord:
|
2017-09-07 11:22:15 -06:00
|
|
|
image: appleboy/drone-discord:1.0.0
|
|
|
|
pull: true
|
|
|
|
secrets: [ discord_webhook_id, discord_webhook_token ]
|
2017-06-14 20:47:42 -06:00
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
2017-06-15 00:46:08 -06:00
|
|
|
status: [ changed, failure ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
|
|
|
services:
|
2016-11-24 06:48:40 -07:00
|
|
|
mysql:
|
2016-11-06 10:32:54 -07:00
|
|
|
image: mysql:5.7
|
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
|
|
|
when:
|
2017-02-01 20:56:08 -07:00
|
|
|
event: [ push, tag, pull_request ]
|
2016-11-06 10:32:54 -07:00
|
|
|
|
2019-03-17 13:17:18 -06:00
|
|
|
mysql8:
|
|
|
|
image: mysql:8.0
|
|
|
|
environment:
|
|
|
|
- MYSQL_DATABASE=test
|
|
|
|
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
|
|
|
- MYSQL_DATABASE=testgitea
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
|
|
|
|
2016-11-24 06:48:40 -07:00
|
|
|
pgsql:
|
2016-11-06 10:32:54 -07:00
|
|
|
image: postgres:9.5
|
|
|
|
environment:
|
|
|
|
- POSTGRES_DB=test
|
|
|
|
when:
|
2017-02-01 20:56:08 -07:00
|
|
|
event: [ push, tag, pull_request ]
|
2018-05-11 01:55:32 -06:00
|
|
|
|
2018-12-11 18:01:41 -07:00
|
|
|
mssql:
|
|
|
|
image: microsoft/mssql-server-linux:latest
|
|
|
|
environment:
|
|
|
|
- ACCEPT_EULA=Y
|
|
|
|
- SA_PASSWORD=MwantsaSecurePassword1
|
|
|
|
- MSSQL_PID=Standard
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|
|
|
|
|
2018-05-11 01:55:32 -06:00
|
|
|
ldap:
|
|
|
|
image: gitea/test-openldap:latest
|
|
|
|
when:
|
|
|
|
event: [ push, tag, pull_request ]
|