2020-01-13 10:40:10 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: compliance
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
steps:
|
2020-03-29 11:56:58 +00:00
|
|
|
- name: deps-frontend
|
|
|
|
pull: always
|
|
|
|
image: node:12
|
|
|
|
commands:
|
|
|
|
- make node_modules
|
|
|
|
|
|
|
|
- name: lint-frontend
|
|
|
|
pull: always
|
|
|
|
image: node:12
|
|
|
|
commands:
|
|
|
|
- make lint-frontend
|
|
|
|
depends_on: [deps-frontend]
|
|
|
|
|
|
|
|
- name: lint-backend
|
|
|
|
pull: always
|
|
|
|
image: golang:1.14
|
|
|
|
commands:
|
|
|
|
- make lint-backend
|
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
|
|
|
GOSUMDB: sum.golang.org
|
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
|
|
|
|
|
|
|
- name: build-frontend
|
2020-01-13 10:40:10 +00:00
|
|
|
pull: always
|
|
|
|
image: node:10 # this step is kept at the lowest version of node that we support
|
|
|
|
commands:
|
2020-03-29 11:56:58 +00:00
|
|
|
- make frontend
|
|
|
|
depends_on: [lint-frontend]
|
2020-01-13 10:40:10 +00:00
|
|
|
|
2020-03-29 11:56:58 +00:00
|
|
|
- name: build-backend-no-gcc
|
2020-01-13 10:40:10 +00:00
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.12 # this step is kept as the lowest version of golang that we support
|
2020-01-13 10:40:10 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: on
|
|
|
|
GOPROXY: off
|
|
|
|
commands:
|
|
|
|
- go build -mod=vendor -o gitea_no_gcc # test if build succeeds without the sqlite tag
|
2020-03-29 11:56:58 +00:00
|
|
|
depends_on: [lint-backend]
|
2020-01-13 10:40:10 +00:00
|
|
|
|
2020-04-05 12:28:18 +00:00
|
|
|
- name: build-backend-arm64
|
|
|
|
pull: always
|
|
|
|
image: golang:1.14
|
|
|
|
environment:
|
|
|
|
GO111MODULE: on
|
|
|
|
GOPROXY: off
|
|
|
|
GOOS: linux
|
|
|
|
GOARCH: arm64
|
|
|
|
TAGS: bindata
|
|
|
|
commands:
|
2020-04-20 19:13:38 +00:00
|
|
|
- make backend # test cross compile
|
2020-04-05 12:28:18 +00:00
|
|
|
- rm ./gitea # clean
|
|
|
|
depends_on: [lint-backend]
|
|
|
|
|
2020-03-29 11:56:58 +00:00
|
|
|
- name: build-backend-386
|
2020-01-13 10:40:10 +00:00
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2020-01-13 10:40:10 +00:00
|
|
|
environment:
|
|
|
|
GO111MODULE: on
|
|
|
|
GOPROXY: off
|
|
|
|
GOOS: linux
|
|
|
|
GOARCH: 386
|
|
|
|
commands:
|
|
|
|
- go build -mod=vendor -o gitea_linux_386 # test if compatible with 32 bit
|
2020-03-29 11:56:58 +00:00
|
|
|
depends_on: [lint-backend]
|
2020-01-13 10:40:10 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-15 04:33:54 +00:00
|
|
|
name: testing-amd64
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-03-29 11:56:58 +00:00
|
|
|
depends_on:
|
|
|
|
- compliance
|
|
|
|
|
2016-11-06 17:32:54 +00:00
|
|
|
workspace:
|
2018-05-07 14:49:57 +00:00
|
|
|
base: /go
|
2016-11-06 17:32:54 +00:00
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
services:
|
|
|
|
- name: mysql
|
|
|
|
pull: default
|
|
|
|
image: mysql:5.7
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
2020-04-20 19:13:38 +00:00
|
|
|
MYSQL_DATABASE: test
|
2020-04-19 15:44:11 +00:00
|
|
|
GOPROXY: off
|
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
|
|
|
GITLAB_READ_TOKEN:
|
|
|
|
from_secret: gitlab_read_token
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
- name: mysql8
|
|
|
|
pull: default
|
|
|
|
image: mysql:8.0
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
MYSQL_DATABASE: testgitea
|
|
|
|
|
|
|
|
- name: mssql
|
|
|
|
pull: default
|
2020-01-14 12:06:49 +00:00
|
|
|
image: mcr.microsoft.com/mssql/server:latest
|
2019-06-30 23:53:41 +00:00
|
|
|
environment:
|
|
|
|
ACCEPT_EULA: Y
|
|
|
|
MSSQL_PID: Standard
|
|
|
|
SA_PASSWORD: MwantsaSecurePassword1
|
|
|
|
|
|
|
|
- name: ldap
|
|
|
|
pull: default
|
|
|
|
image: gitea/test-openldap:latest
|
|
|
|
|
2020-02-13 06:06:17 +00:00
|
|
|
- name: elasticsearch
|
|
|
|
pull: default
|
|
|
|
environment:
|
|
|
|
discovery.type: single-node
|
|
|
|
image: elasticsearch:7.5.0
|
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
2019-05-02 22:41:54 +00:00
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
2019-06-05 01:17:17 +00:00
|
|
|
when:
|
|
|
|
event:
|
2019-06-30 23:53:41 +00:00
|
|
|
exclude:
|
|
|
|
- pull_request
|
2017-11-01 08:48:40 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: build
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2016-11-06 17:32:54 +00:00
|
|
|
commands:
|
2020-04-20 19:13:38 +00:00
|
|
|
- make backend
|
2017-06-01 18:07:24 +00:00
|
|
|
environment:
|
2019-08-04 21:58:16 +00:00
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
2019-08-08 09:38:23 +00:00
|
|
|
GOSUMDB: sum.golang.org
|
2018-10-23 11:47:59 +00:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2019-06-30 23:53:41 +00:00
|
|
|
|
2020-01-22 21:25:41 +00:00
|
|
|
- name: tag-pre-condition
|
|
|
|
pull: always
|
2020-06-03 20:32:51 +00:00
|
|
|
image: drone/git
|
2020-01-22 21:25:41 +00:00
|
|
|
commands:
|
|
|
|
- git update-ref refs/heads/tag_test ${DRONE_COMMIT_SHA}
|
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: unit-test
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2017-09-13 12:57:55 +00:00
|
|
|
commands:
|
2020-01-26 20:07:12 +00:00
|
|
|
- make unit-test-coverage test-check
|
2019-06-30 23:53:41 +00:00
|
|
|
environment:
|
2019-08-04 21:58:16 +00:00
|
|
|
GOPROXY: off
|
2019-06-30 23:53:41 +00:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2020-01-16 15:15:44 +00:00
|
|
|
GITHUB_READ_TOKEN:
|
|
|
|
from_secret: github_read_token
|
2017-06-01 18:07:24 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: test-mysql
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2017-09-13 12:57:55 +00:00
|
|
|
commands:
|
2019-06-30 23:53:41 +00:00
|
|
|
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
|
2018-05-07 14:49:57 +00:00
|
|
|
- apt-get install -y git-lfs
|
2020-01-25 16:42:38 +00:00
|
|
|
- make test-mysql-migration integration-test-coverage
|
2019-06-30 23:53:41 +00:00
|
|
|
environment:
|
2019-08-04 21:58:16 +00:00
|
|
|
GOPROXY: off
|
2019-06-30 23:53:41 +00:00
|
|
|
TAGS: bindata
|
|
|
|
TEST_LDAP: 1
|
2020-04-19 11:17:02 +00:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2019-06-30 23:53:41 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
2016-11-06 17:32:54 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: test-mysql8
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2019-03-17 19:17:18 +00:00
|
|
|
commands:
|
2019-06-30 23:53:41 +00:00
|
|
|
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
|
2019-03-17 19:17:18 +00:00
|
|
|
- apt-get install -y git-lfs
|
2020-01-25 16:42:38 +00:00
|
|
|
- timeout -s ABRT 40m make test-mysql8-migration test-mysql8
|
2016-12-04 22:55:09 +00:00
|
|
|
environment:
|
2019-08-04 21:58:16 +00:00
|
|
|
GOPROXY: off
|
2017-03-07 13:49:24 +00:00
|
|
|
TAGS: bindata
|
2019-06-30 23:53:41 +00:00
|
|
|
TEST_LDAP: 1
|
2020-04-19 11:17:02 +00:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2019-06-30 23:53:41 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
- name: test-mssql
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2018-12-12 01:01:41 +00:00
|
|
|
commands:
|
2019-06-30 23:53:41 +00:00
|
|
|
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
|
2018-12-12 01:01:41 +00:00
|
|
|
- apt-get install -y git-lfs
|
2020-01-25 16:42:38 +00:00
|
|
|
- make test-mssql-migration test-mssql
|
2017-09-13 12:57:55 +00:00
|
|
|
environment:
|
2019-08-04 21:58:16 +00:00
|
|
|
GOPROXY: off
|
2017-09-13 12:57:55 +00:00
|
|
|
TAGS: bindata
|
2019-06-30 23:53:41 +00:00
|
|
|
TEST_LDAP: 1
|
2020-04-19 11:17:02 +00:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2019-06-30 23:53:41 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
- name: generate-coverage
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2017-09-13 12:57:55 +00:00
|
|
|
commands:
|
|
|
|
- make coverage
|
2019-06-30 23:53:41 +00:00
|
|
|
environment:
|
2019-08-04 21:58:16 +00:00
|
|
|
GOPROXY: off
|
2019-06-30 23:53:41 +00:00
|
|
|
TAGS: bindata
|
|
|
|
depends_on:
|
|
|
|
- unit-test
|
|
|
|
- test-mysql
|
2017-09-13 12:57:55 +00:00
|
|
|
when:
|
2019-06-30 23:53:41 +00:00
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2017-09-13 12:57:55 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: coverage
|
|
|
|
pull: always
|
2017-09-13 12:57:55 +00:00
|
|
|
image: robertstettner/drone-codecov
|
2019-06-30 23:53:41 +00:00
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
- coverage.all
|
|
|
|
environment:
|
|
|
|
CODECOV_TOKEN:
|
|
|
|
from_secret: codecov_token
|
|
|
|
depends_on:
|
|
|
|
- generate-coverage
|
2017-09-13 12:57:55 +00:00
|
|
|
when:
|
2019-06-30 23:53:41 +00:00
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-15 04:33:54 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: testing-arm64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2020-03-29 11:56:58 +00:00
|
|
|
depends_on:
|
|
|
|
- compliance
|
|
|
|
|
2020-01-15 04:33:54 +00:00
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: pgsql
|
|
|
|
pull: default
|
|
|
|
image: postgres:9.5
|
|
|
|
environment:
|
|
|
|
POSTGRES_DB: test
|
2020-02-16 20:46:29 +00:00
|
|
|
POSTGRES_PASSWORD: postgres
|
2020-01-15 04:33:54 +00:00
|
|
|
|
|
|
|
- name: ldap
|
|
|
|
pull: default
|
|
|
|
image: gitea/test-openldap:latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: build
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2020-01-15 04:33:54 +00:00
|
|
|
commands:
|
2020-04-20 19:13:38 +00:00
|
|
|
- make backend
|
2020-01-15 04:33:54 +00:00
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
|
|
|
GOSUMDB: sum.golang.org
|
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
|
|
|
|
|
|
|
- name: test-sqlite
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2020-01-15 04:33:54 +00:00
|
|
|
commands:
|
|
|
|
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
|
|
|
|
- apt-get install -y git-lfs
|
2020-01-25 16:42:38 +00:00
|
|
|
- timeout -s ABRT 40m make test-sqlite-migration test-sqlite
|
2020-01-15 04:33:54 +00:00
|
|
|
environment:
|
|
|
|
GOPROXY: off
|
|
|
|
TAGS: bindata
|
2020-04-19 11:17:02 +00:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2020-01-15 04:33:54 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
- name: test-pgsql
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: golang:1.14
|
2020-01-15 04:33:54 +00:00
|
|
|
commands:
|
|
|
|
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
|
|
|
|
- apt-get install -y git-lfs
|
2020-01-25 16:42:38 +00:00
|
|
|
- timeout -s ABRT 40m make test-pgsql-migration test-pgsql
|
2020-01-15 04:33:54 +00:00
|
|
|
environment:
|
|
|
|
GOPROXY: off
|
|
|
|
TAGS: bindata
|
|
|
|
TEST_LDAP: 1
|
2020-04-19 11:17:02 +00:00
|
|
|
USE_REPO_TEST_DIR: 1
|
2020-01-15 04:33:54 +00:00
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: translations
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
2020-01-19 09:17:57 +00:00
|
|
|
arch: arm64
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
2017-09-07 17:22:15 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: download
|
|
|
|
pull: always
|
|
|
|
image: jonasfranz/crowdin
|
|
|
|
settings:
|
|
|
|
download: true
|
|
|
|
export_dir: options/locale/
|
|
|
|
ignore_branch: true
|
|
|
|
project_identifier: gitea
|
|
|
|
environment:
|
|
|
|
CROWDIN_KEY:
|
|
|
|
from_secret: crowdin_key
|
|
|
|
|
|
|
|
- name: update
|
|
|
|
pull: default
|
2020-06-03 20:32:51 +00:00
|
|
|
image: alpine:3.12
|
2019-06-30 23:53:41 +00:00
|
|
|
commands:
|
2020-04-03 19:29:12 +00:00
|
|
|
- ./build/update-locales.sh
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
- name: push
|
|
|
|
pull: always
|
|
|
|
image: appleboy/drone-git-push
|
|
|
|
settings:
|
|
|
|
author_email: "teabot@gitea.io"
|
|
|
|
author_name: GiteaBot
|
|
|
|
commit: true
|
|
|
|
commit_message: "[skip ci] Updated translations via Crowdin"
|
|
|
|
remote: "git@github.com:go-gitea/gitea.git"
|
|
|
|
environment:
|
|
|
|
GIT_PUSH_SSH_KEY:
|
|
|
|
from_secret: git_push_ssh_key
|
|
|
|
|
|
|
|
- name: upload_translations
|
|
|
|
pull: always
|
|
|
|
image: jonasfranz/crowdin
|
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
locale_en-US.ini: options/locale/locale_en-US.ini
|
|
|
|
ignore_branch: true
|
|
|
|
project_identifier: gitea
|
|
|
|
environment:
|
|
|
|
CROWDIN_KEY:
|
|
|
|
from_secret: crowdin_key
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-03-11 02:03:20 +00:00
|
|
|
name: release-latest
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
- "release/*"
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 04:33:54 +00:00
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2019-06-30 23:53:41 +00:00
|
|
|
- translations
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: static
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: techknowlogick/xgo:go-1.14.x
|
2019-06-30 23:53:41 +00:00
|
|
|
commands:
|
2019-12-15 18:06:36 +00:00
|
|
|
- apt update && apt -y install curl
|
|
|
|
- curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt -y install nodejs
|
2019-06-30 23:53:41 +00:00
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
|
|
|
- make release
|
2017-03-07 13:49:24 +00:00
|
|
|
environment:
|
2020-04-06 04:48:55 +00:00
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
2018-10-23 11:47:59 +00:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
- name: gpg-sign
|
|
|
|
pull: always
|
|
|
|
image: plugins/gpgsign:1
|
|
|
|
settings:
|
|
|
|
detach_sign: true
|
|
|
|
excludes:
|
|
|
|
- "dist/release/*.sha256"
|
|
|
|
files:
|
|
|
|
- "dist/release/*"
|
|
|
|
environment:
|
|
|
|
GPGSIGN_KEY:
|
|
|
|
from_secret: gpgsign_key
|
|
|
|
GPGSIGN_PASSPHRASE:
|
|
|
|
from_secret: gpgsign_passphrase
|
|
|
|
|
2020-03-11 02:03:20 +00:00
|
|
|
- name: release-branch
|
2019-06-30 23:53:41 +00:00
|
|
|
pull: always
|
|
|
|
image: plugins/s3:1
|
|
|
|
settings:
|
|
|
|
acl: public-read
|
|
|
|
bucket: releases
|
|
|
|
endpoint: https://storage.gitea.io
|
|
|
|
path_style: true
|
|
|
|
source: "dist/release/*"
|
|
|
|
strip_prefix: dist/release/
|
|
|
|
target: "/gitea/${DRONE_BRANCH##release/v}"
|
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: aws_access_key_id
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: aws_secret_access_key
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- "release/*"
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
2020-03-11 02:03:20 +00:00
|
|
|
- name: release-master
|
2019-06-30 23:53:41 +00:00
|
|
|
pull: always
|
|
|
|
image: plugins/s3:1
|
|
|
|
settings:
|
|
|
|
acl: public-read
|
|
|
|
bucket: releases
|
|
|
|
endpoint: https://storage.gitea.io
|
|
|
|
path_style: true
|
|
|
|
source: "dist/release/*"
|
|
|
|
strip_prefix: dist/release/
|
|
|
|
target: /gitea/master
|
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: aws_access_key_id
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: aws_secret_access_key
|
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: release-version
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 04:33:54 +00:00
|
|
|
- testing-arm64
|
|
|
|
- testing-amd64
|
2019-06-30 23:53:41 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: static
|
|
|
|
pull: always
|
2020-03-20 14:29:31 +00:00
|
|
|
image: techknowlogick/xgo:go-1.14.x
|
2016-11-06 17:32:54 +00:00
|
|
|
commands:
|
2019-12-15 18:06:36 +00:00
|
|
|
- apt update && apt -y install curl
|
|
|
|
- curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt -y install nodejs
|
2018-05-22 16:12:10 +00:00
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
2016-12-01 07:28:43 +00:00
|
|
|
- make release
|
2019-06-30 23:53:41 +00:00
|
|
|
environment:
|
2020-04-06 04:48:55 +00:00
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
2019-06-30 23:53:41 +00:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2016-11-06 17:32:54 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: gpg-sign
|
|
|
|
pull: always
|
|
|
|
image: plugins/gpgsign:1
|
|
|
|
settings:
|
|
|
|
detach_sign: true
|
|
|
|
excludes:
|
|
|
|
- "dist/release/*.sha256"
|
|
|
|
files:
|
|
|
|
- "dist/release/*"
|
|
|
|
environment:
|
|
|
|
GPGSIGN_KEY:
|
|
|
|
from_secret: gpgsign_key
|
|
|
|
GPGSIGN_PASSPHRASE:
|
|
|
|
from_secret: gpgsign_passphrase
|
|
|
|
|
2020-03-11 02:03:20 +00:00
|
|
|
- name: release-tag
|
2019-06-30 23:53:41 +00:00
|
|
|
pull: always
|
|
|
|
image: plugins/s3:1
|
|
|
|
settings:
|
|
|
|
acl: public-read
|
|
|
|
bucket: releases
|
|
|
|
endpoint: https://storage.gitea.io
|
|
|
|
path_style: true
|
|
|
|
source: "dist/release/*"
|
|
|
|
strip_prefix: dist/release/
|
|
|
|
target: "/gitea/${DRONE_TAG##v}"
|
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: aws_access_key_id
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: aws_secret_access_key
|
|
|
|
|
|
|
|
- name: github
|
|
|
|
pull: always
|
|
|
|
image: plugins/github-release:1
|
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
- "dist/release/*"
|
|
|
|
environment:
|
|
|
|
GITHUB_TOKEN:
|
|
|
|
from_secret: github_token
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docs
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
2020-01-15 05:59:13 +00:00
|
|
|
arch: arm64
|
2019-06-30 23:53:41 +00:00
|
|
|
|
2020-03-29 11:56:58 +00:00
|
|
|
depends_on:
|
|
|
|
- compliance
|
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
steps:
|
|
|
|
- name: build-docs
|
|
|
|
pull: always
|
2020-01-15 05:59:13 +00:00
|
|
|
image: plugins/hugo:latest
|
2017-11-26 21:44:32 +00:00
|
|
|
commands:
|
2020-01-15 05:59:13 +00:00
|
|
|
- apk add --no-cache make bash curl
|
2017-11-26 21:44:32 +00:00
|
|
|
- cd docs
|
2020-01-25 16:42:38 +00:00
|
|
|
- make trans-copy clean build
|
2017-11-26 21:44:32 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
- name: publish-docs
|
|
|
|
pull: always
|
2020-01-15 05:59:13 +00:00
|
|
|
image: techknowlogick/drone-netlify:latest
|
2019-06-30 23:53:41 +00:00
|
|
|
settings:
|
|
|
|
path: docs/public/
|
|
|
|
site_id: d2260bae-7861-4c02-8646-8f6440b12672
|
|
|
|
environment:
|
|
|
|
NETLIFY_TOKEN:
|
|
|
|
from_secret: netlify_token
|
2019-07-01 07:32:50 +00:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
event:
|
|
|
|
- push
|
2016-12-23 23:00:48 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-13 10:40:10 +00:00
|
|
|
name: docker-linux-amd64-release
|
2016-11-06 17:32:54 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2016-11-06 17:32:54 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
2017-11-01 06:14:49 +00:00
|
|
|
|
2019-07-17 14:47:34 +00:00
|
|
|
depends_on:
|
2020-01-15 04:33:54 +00:00
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2019-07-17 14:47:34 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
2016-11-06 17:32:54 +00:00
|
|
|
|
2019-07-17 14:47:34 +00:00
|
|
|
- name: publish
|
2019-06-30 23:53:41 +00:00
|
|
|
pull: always
|
2019-07-17 14:47:34 +00:00
|
|
|
image: plugins/docker:linux-amd64
|
2019-06-30 23:53:41 +00:00
|
|
|
settings:
|
2019-07-17 14:47:34 +00:00
|
|
|
auto_tag: true
|
2019-07-24 17:21:12 +00:00
|
|
|
auto_tag_suffix: linux-amd64
|
2019-06-30 23:53:41 +00:00
|
|
|
repo: gitea/gitea
|
2019-08-04 21:58:16 +00:00
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
2019-07-17 14:47:34 +00:00
|
|
|
password:
|
2019-06-30 23:53:41 +00:00
|
|
|
from_secret: docker_password
|
2019-07-17 14:47:34 +00:00
|
|
|
username:
|
2019-06-30 23:53:41 +00:00
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
2019-07-17 14:47:34 +00:00
|
|
|
exclude:
|
|
|
|
- pull_request
|
2019-03-17 19:17:18 +00:00
|
|
|
|
2019-07-24 17:21:12 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-13 10:40:10 +00:00
|
|
|
name: docker-linux-arm64-dry-run
|
2019-07-24 17:21:12 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-13 10:40:10 +00:00
|
|
|
- compliance
|
2019-07-24 17:21:12 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/pull/**"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: dryrun
|
|
|
|
pull: always
|
|
|
|
image: plugins/docker:linux-arm64
|
|
|
|
settings:
|
|
|
|
dry_run: true
|
|
|
|
repo: gitea/gitea
|
|
|
|
tags: linux-arm64
|
2019-08-04 21:58:16 +00:00
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
2019-07-24 17:21:12 +00:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-13 10:40:10 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docker-linux-arm64-release
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
workspace:
|
|
|
|
base: /go
|
|
|
|
path: src/code.gitea.io/gitea
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 04:33:54 +00:00
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2020-01-13 10:40:10 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
2019-07-24 17:21:12 +00:00
|
|
|
- name: publish
|
|
|
|
pull: always
|
|
|
|
image: plugins/docker:linux-arm64
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm64
|
|
|
|
repo: gitea/gitea
|
2019-08-04 21:58:16 +00:00
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
2019-07-24 17:21:12 +00:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docker-manifest
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: manifest
|
|
|
|
pull: always
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
|
|
|
spec: docker/manifest.tmpl
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-13 10:40:10 +00:00
|
|
|
- docker-linux-amd64-release
|
|
|
|
- docker-linux-arm64-release
|
2019-07-24 17:21:12 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-15 02:14:21 +00:00
|
|
|
name: notifications
|
2018-05-11 07:55:32 +00:00
|
|
|
|
2019-06-30 23:53:41 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
2020-01-15 02:14:21 +00:00
|
|
|
arch: arm64
|
2019-06-30 23:53:41 +00:00
|
|
|
|
2019-12-08 22:24:17 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2020-01-15 02:14:21 +00:00
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|
|
|
|
- "release/*"
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
2019-06-30 23:53:41 +00:00
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 04:33:54 +00:00
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2019-06-30 23:53:41 +00:00
|
|
|
- translations
|
|
|
|
- release-version
|
2020-03-11 02:03:20 +00:00
|
|
|
- release-latest
|
2020-01-13 10:40:10 +00:00
|
|
|
- docker-linux-amd64-release
|
|
|
|
- docker-linux-arm64-release
|
2019-07-24 17:21:12 +00:00
|
|
|
- docker-manifest
|
2019-06-30 23:53:41 +00:00
|
|
|
- docs
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: discord
|
|
|
|
pull: always
|
2020-01-15 02:14:21 +00:00
|
|
|
image: appleboy/drone-discord:1.2.4
|
|
|
|
settings:
|
|
|
|
message: "{{#success build.status}} ✅ Build #{{build.number}} of `{{repo.name}}` succeeded.\n\n📝 Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n\n🌐 {{ build.link }} {{else}} ❌ Build #{{build.number}} of `{{repo.name}}` failed.\n\n📝 Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n\n🌐 {{ build.link }} {{/success}}\n"
|
|
|
|
webhook_id:
|
2019-06-30 23:53:41 +00:00
|
|
|
from_secret: discord_webhook_id
|
2020-01-15 02:14:21 +00:00
|
|
|
webhook_token:
|
2019-06-30 23:53:41 +00:00
|
|
|
from_secret: discord_webhook_token
|