2020-01-13 16:10:10 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2020-01-13 16:10:10 +05:30
|
|
|
name: compliance
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
2021-06-23 11:06:27 +05:30
|
|
|
arch: amd64
|
2020-01-13 16:10:10 +05:30
|
|
|
|
2021-01-24 17:51:33 +05:30
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-13 16:10:10 +05:30
|
|
|
steps:
|
2020-03-29 17:26:58 +05:30
|
|
|
- name: deps-frontend
|
|
|
|
pull: always
|
2021-08-05 05:16:19 +05:30
|
|
|
image: node:16
|
2020-03-29 17:26:58 +05:30
|
|
|
commands:
|
|
|
|
- make node_modules
|
|
|
|
|
|
|
|
- name: lint-frontend
|
2021-08-05 05:16:19 +05:30
|
|
|
image: node:16
|
2020-03-29 17:26:58 +05:30
|
|
|
commands:
|
|
|
|
- make lint-frontend
|
|
|
|
depends_on: [deps-frontend]
|
|
|
|
|
|
|
|
- name: lint-backend
|
|
|
|
pull: always
|
2021-06-23 11:06:27 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
2020-03-29 17:26:58 +05:30
|
|
|
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
|
|
|
|
|
2021-01-06 07:08:00 +05:30
|
|
|
- name: lint-backend-windows
|
|
|
|
pull: always
|
2021-06-23 11:06:27 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
2021-01-06 07:08:00 +05:30
|
|
|
commands:
|
|
|
|
- make golangci-lint vet
|
|
|
|
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
|
|
|
|
GOOS: windows
|
|
|
|
GOARCH: amd64
|
|
|
|
|
2020-12-17 19:30:47 +05:30
|
|
|
- name: lint-backend-gogit
|
|
|
|
pull: always
|
2021-06-23 11:06:27 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
2020-12-17 19:30:47 +05:30
|
|
|
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 gogit sqlite sqlite_unlock_notify
|
|
|
|
|
2020-08-17 03:13:09 +05:30
|
|
|
- name: checks-frontend
|
2021-08-05 05:16:19 +05:30
|
|
|
image: node:16
|
2020-08-17 03:13:09 +05:30
|
|
|
commands:
|
|
|
|
- make checks-frontend
|
|
|
|
depends_on: [deps-frontend]
|
|
|
|
|
|
|
|
- name: checks-backend
|
|
|
|
pull: always
|
2021-08-17 18:01:28 +05:30
|
|
|
image: golang:1.17
|
2020-08-17 03:13:09 +05:30
|
|
|
commands:
|
|
|
|
- make checks-backend
|
|
|
|
depends_on: [lint-backend]
|
|
|
|
|
2021-04-08 16:11:57 +05:30
|
|
|
- name: test-frontend
|
2021-08-05 05:16:19 +05:30
|
|
|
image: node:16
|
2021-04-08 16:11:57 +05:30
|
|
|
commands:
|
|
|
|
- make test-frontend
|
|
|
|
depends_on: [lint-frontend]
|
|
|
|
|
2020-03-29 17:26:58 +05:30
|
|
|
- name: build-frontend
|
2021-08-05 05:16:19 +05:30
|
|
|
image: node:16
|
2020-01-13 16:10:10 +05:30
|
|
|
commands:
|
2020-03-29 17:26:58 +05:30
|
|
|
- make frontend
|
2021-04-08 16:11:57 +05:30
|
|
|
depends_on: [test-frontend]
|
2020-01-13 16:10:10 +05:30
|
|
|
|
2020-03-29 17:26:58 +05:30
|
|
|
- name: build-backend-no-gcc
|
2020-01-13 16:10:10 +05:30
|
|
|
pull: always
|
2021-08-04 00:02:01 +05:30
|
|
|
image: golang:1.16 # this step is kept as the lowest version of golang that we support
|
2020-01-13 16:10:10 +05:30
|
|
|
environment:
|
|
|
|
GO111MODULE: on
|
|
|
|
GOPROXY: off
|
|
|
|
commands:
|
|
|
|
- go build -mod=vendor -o gitea_no_gcc # test if build succeeds without the sqlite tag
|
2020-08-17 03:13:09 +05:30
|
|
|
depends_on: [checks-backend]
|
2020-01-13 16:10:10 +05:30
|
|
|
|
2020-04-05 17:58:18 +05:30
|
|
|
- name: build-backend-arm64
|
2021-08-17 18:01:28 +05:30
|
|
|
image: golang:1.17
|
2020-04-05 17:58:18 +05:30
|
|
|
environment:
|
|
|
|
GO111MODULE: on
|
|
|
|
GOPROXY: off
|
|
|
|
GOOS: linux
|
|
|
|
GOARCH: arm64
|
2020-12-17 19:30:47 +05:30
|
|
|
TAGS: bindata gogit
|
2020-04-05 17:58:18 +05:30
|
|
|
commands:
|
2020-04-21 00:43:38 +05:30
|
|
|
- make backend # test cross compile
|
2020-04-05 17:58:18 +05:30
|
|
|
- rm ./gitea # clean
|
2020-08-17 03:13:09 +05:30
|
|
|
depends_on: [checks-backend]
|
2020-04-05 17:58:18 +05:30
|
|
|
|
2021-01-06 07:46:37 +05:30
|
|
|
- name: build-backend-windows
|
2021-08-17 18:01:28 +05:30
|
|
|
image: golang:1.17
|
2021-01-06 07:46:37 +05:30
|
|
|
environment:
|
|
|
|
GO111MODULE: on
|
|
|
|
GOPROXY: off
|
|
|
|
GOOS: windows
|
|
|
|
GOARCH: amd64
|
|
|
|
TAGS: bindata gogit
|
|
|
|
commands:
|
|
|
|
- go build -mod=vendor -o gitea_windows
|
|
|
|
depends_on: [checks-backend]
|
|
|
|
|
2020-03-29 17:26:58 +05:30
|
|
|
- name: build-backend-386
|
2021-08-17 18:01:28 +05:30
|
|
|
image: golang:1.17
|
2020-01-13 16:10:10 +05:30
|
|
|
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-08-17 03:13:09 +05:30
|
|
|
depends_on: [checks-backend]
|
2020-01-13 16:10:10 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2020-01-15 10:03:54 +05:30
|
|
|
name: testing-amd64
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2020-03-29 17:26:58 +05:30
|
|
|
depends_on:
|
|
|
|
- compliance
|
|
|
|
|
2021-01-24 17:51:33 +05:30
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
services:
|
|
|
|
- name: mysql
|
|
|
|
image: mysql:5.7
|
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
2020-04-21 00:43:38 +05:30
|
|
|
MYSQL_DATABASE: test
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
- name: mysql8
|
2021-05-22 03:41:48 +05:30
|
|
|
image: mysql:8
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
|
|
|
MYSQL_DATABASE: testgitea
|
|
|
|
|
|
|
|
- name: mssql
|
2020-01-14 17:36:49 +05:30
|
|
|
image: mcr.microsoft.com/mssql/server:latest
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
|
|
|
ACCEPT_EULA: Y
|
|
|
|
MSSQL_PID: Standard
|
|
|
|
SA_PASSWORD: MwantsaSecurePassword1
|
|
|
|
|
|
|
|
- name: ldap
|
|
|
|
image: gitea/test-openldap:latest
|
|
|
|
|
2020-02-13 11:36:17 +05:30
|
|
|
- name: elasticsearch
|
|
|
|
environment:
|
|
|
|
discovery.type: single-node
|
|
|
|
image: elasticsearch:7.5.0
|
|
|
|
|
2020-08-18 09:53:45 +05:30
|
|
|
- name: minio
|
2021-03-17 14:10:52 +05:30
|
|
|
image: minio/minio:RELEASE.2021-03-12T00-00-47Z
|
2020-08-18 09:53:45 +05:30
|
|
|
commands:
|
|
|
|
- minio server /data
|
|
|
|
environment:
|
|
|
|
MINIO_ACCESS_KEY: 123456
|
|
|
|
MINIO_SECRET_KEY: 12345678
|
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
2019-05-03 04:11:54 +05:30
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
2019-06-05 06:47:17 +05:30
|
|
|
when:
|
|
|
|
event:
|
2019-07-01 05:23:41 +05:30
|
|
|
exclude:
|
|
|
|
- pull_request
|
2017-11-01 14:18:40 +05:30
|
|
|
|
2020-01-23 02:55:41 +05:30
|
|
|
- name: tag-pre-condition
|
|
|
|
pull: always
|
2020-06-04 02:02:51 +05:30
|
|
|
image: drone/git
|
2020-01-23 02:55:41 +05:30
|
|
|
commands:
|
|
|
|
- git update-ref refs/heads/tag_test ${DRONE_COMMIT_SHA}
|
|
|
|
|
2021-11-19 11:28:34 +05:30
|
|
|
- name: prepare-test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
|
|
|
commands:
|
2021-11-19 11:28:34 +05:30
|
|
|
- ./build/test-env-prepare.sh
|
|
|
|
|
|
|
|
- name: build
|
|
|
|
pull: always
|
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
|
|
|
user: gitea
|
|
|
|
commands:
|
|
|
|
- ./build/test-env-check.sh
|
|
|
|
- make 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
|
|
|
|
depends_on:
|
|
|
|
- prepare-test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
- name: unit-test
|
2021-10-07 14:22:08 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
|
|
|
user: gitea
|
2017-09-13 18:27:55 +05:30
|
|
|
commands:
|
2020-01-27 01:37:12 +05:30
|
|
|
- make unit-test-coverage test-check
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
2019-08-05 03:28:16 +05:30
|
|
|
GOPROXY: off
|
2019-07-01 05:23:41 +05:30
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2020-01-16 20:45:44 +05:30
|
|
|
GITHUB_READ_TOKEN:
|
|
|
|
from_secret: github_read_token
|
2017-06-01 23:37:24 +05:30
|
|
|
|
2020-12-17 19:30:47 +05:30
|
|
|
- name: unit-test-gogit
|
|
|
|
pull: always
|
2021-10-07 14:22:08 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
|
|
|
user: gitea
|
2020-12-17 19:30:47 +05:30
|
|
|
commands:
|
|
|
|
- make unit-test-coverage test-check
|
|
|
|
environment:
|
|
|
|
GOPROXY: off
|
|
|
|
TAGS: bindata gogit sqlite sqlite_unlock_notify
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2020-12-17 19:30:47 +05:30
|
|
|
GITHUB_READ_TOKEN:
|
|
|
|
from_secret: github_read_token
|
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
- name: test-mysql
|
2021-03-12 07:34:43 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
user: gitea
|
2017-09-13 18:27:55 +05:30
|
|
|
commands:
|
2020-01-25 22:12:38 +05:30
|
|
|
- make test-mysql-migration integration-test-coverage
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
2019-08-05 03:28:16 +05:30
|
|
|
GOPROXY: off
|
2019-07-01 05:23:41 +05:30
|
|
|
TAGS: bindata
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2019-07-01 05:23:41 +05:30
|
|
|
TEST_LDAP: 1
|
2020-04-19 16:47:02 +05:30
|
|
|
USE_REPO_TEST_DIR: 1
|
2020-08-30 21:38:01 +05:30
|
|
|
TEST_INDEXER_CODE_ES_URL: "http://elastic:changeme@elasticsearch:9200"
|
2019-07-01 05:23:41 +05:30
|
|
|
depends_on:
|
|
|
|
- build
|
2016-11-06 23:02:54 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
- name: test-mysql8
|
2021-03-12 07:34:43 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
user: gitea
|
2019-03-18 00:47:18 +05:30
|
|
|
commands:
|
2020-01-25 22:12:38 +05:30
|
|
|
- timeout -s ABRT 40m make test-mysql8-migration test-mysql8
|
2016-12-05 04:25:09 +05:30
|
|
|
environment:
|
2019-08-05 03:28:16 +05:30
|
|
|
GOPROXY: off
|
2017-03-07 19:19:24 +05:30
|
|
|
TAGS: bindata
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2019-07-01 05:23:41 +05:30
|
|
|
TEST_LDAP: 1
|
2020-04-19 16:47:02 +05:30
|
|
|
USE_REPO_TEST_DIR: 1
|
2019-07-01 05:23:41 +05:30
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
- name: test-mssql
|
2021-03-12 07:34:43 +05:30
|
|
|
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
user: gitea
|
2018-12-12 06:31:41 +05:30
|
|
|
commands:
|
2020-01-25 22:12:38 +05:30
|
|
|
- make test-mssql-migration test-mssql
|
2017-09-13 18:27:55 +05:30
|
|
|
environment:
|
2019-08-05 03:28:16 +05:30
|
|
|
GOPROXY: off
|
2017-09-13 18:27:55 +05:30
|
|
|
TAGS: bindata
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2019-07-01 05:23:41 +05:30
|
|
|
TEST_LDAP: 1
|
2020-04-19 16:47:02 +05:30
|
|
|
USE_REPO_TEST_DIR: 1
|
2019-07-01 05:23:41 +05:30
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
- name: generate-coverage
|
2021-08-17 18:01:28 +05:30
|
|
|
image: golang:1.17
|
2017-09-13 18:27:55 +05:30
|
|
|
commands:
|
|
|
|
- make coverage
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
2019-08-05 03:28:16 +05:30
|
|
|
GOPROXY: off
|
2019-07-01 05:23:41 +05:30
|
|
|
TAGS: bindata
|
|
|
|
depends_on:
|
|
|
|
- unit-test
|
|
|
|
- test-mysql
|
2017-09-13 18:27:55 +05:30
|
|
|
when:
|
2019-07-01 05:23:41 +05:30
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2019-07-01 05:23:41 +05:30
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2017-09-13 18:27:55 +05:30
|
|
|
|
2020-08-11 07:32:09 +05:30
|
|
|
- name: coverage-codecov
|
2019-07-01 05:23:41 +05:30
|
|
|
pull: always
|
2020-08-11 07:32:09 +05:30
|
|
|
image: plugins/codecov
|
2019-07-01 05:23:41 +05:30
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
- coverage.all
|
2020-08-11 07:32:09 +05:30
|
|
|
token:
|
2019-07-01 05:23:41 +05:30
|
|
|
from_secret: codecov_token
|
|
|
|
depends_on:
|
|
|
|
- generate-coverage
|
2017-09-13 18:27:55 +05:30
|
|
|
when:
|
2019-07-01 05:23:41 +05:30
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2019-07-01 05:23:41 +05:30
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-15 10:03:54 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: testing-arm64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2020-03-29 17:26:58 +05:30
|
|
|
depends_on:
|
|
|
|
- compliance
|
|
|
|
|
2021-01-24 17:51:33 +05:30
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-15 10:03:54 +05:30
|
|
|
services:
|
|
|
|
- name: pgsql
|
|
|
|
pull: default
|
2021-05-22 03:41:48 +05:30
|
|
|
image: postgres:10
|
2020-01-15 10:03:54 +05:30
|
|
|
environment:
|
|
|
|
POSTGRES_DB: test
|
2020-02-17 02:16:29 +05:30
|
|
|
POSTGRES_PASSWORD: postgres
|
2020-01-15 10:03:54 +05:30
|
|
|
|
|
|
|
- name: ldap
|
|
|
|
pull: default
|
|
|
|
image: gitea/test-openldap:latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2021-11-19 11:28:34 +05:30
|
|
|
- name: prepare-test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
image: gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
|
|
|
|
commands:
|
2021-11-19 11:28:34 +05:30
|
|
|
- ./build/test-env-prepare.sh
|
2021-10-07 14:22:08 +05:30
|
|
|
|
2020-01-15 10:03:54 +05:30
|
|
|
- name: build
|
|
|
|
pull: always
|
2021-10-07 14:22:08 +05:30
|
|
|
image: gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
|
|
|
|
user: gitea
|
2020-01-15 10:03:54 +05:30
|
|
|
commands:
|
2021-11-19 11:28:34 +05:30
|
|
|
- ./build/test-env-check.sh
|
2020-04-21 00:43:38 +05:30
|
|
|
- make backend
|
2020-01-15 10:03:54 +05:30
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
|
|
|
GOSUMDB: sum.golang.org
|
2021-03-01 04:38:33 +05:30
|
|
|
TAGS: bindata gogit sqlite sqlite_unlock_notify
|
2021-11-19 11:28:34 +05:30
|
|
|
depends_on:
|
|
|
|
- prepare-test-env
|
2020-01-15 10:03:54 +05:30
|
|
|
|
|
|
|
- name: test-sqlite
|
2021-03-12 07:34:43 +05:30
|
|
|
image: gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
user: gitea
|
2020-01-15 10:03:54 +05:30
|
|
|
commands:
|
2020-01-25 22:12:38 +05:30
|
|
|
- timeout -s ABRT 40m make test-sqlite-migration test-sqlite
|
2020-01-15 10:03:54 +05:30
|
|
|
environment:
|
|
|
|
GOPROXY: off
|
2020-12-17 19:30:47 +05:30
|
|
|
TAGS: bindata gogit sqlite sqlite_unlock_notify
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2020-12-17 19:30:47 +05:30
|
|
|
TEST_TAGS: gogit sqlite sqlite_unlock_notify
|
2020-04-19 16:47:02 +05:30
|
|
|
USE_REPO_TEST_DIR: 1
|
2020-01-15 10:03:54 +05:30
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
- name: test-pgsql
|
2021-03-12 07:34:43 +05:30
|
|
|
image: gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
|
2021-10-07 14:22:08 +05:30
|
|
|
user: gitea
|
2020-01-15 10:03:54 +05:30
|
|
|
commands:
|
2020-01-25 22:12:38 +05:30
|
|
|
- timeout -s ABRT 40m make test-pgsql-migration test-pgsql
|
2020-01-15 10:03:54 +05:30
|
|
|
environment:
|
|
|
|
GOPROXY: off
|
2020-12-17 19:30:47 +05:30
|
|
|
TAGS: bindata gogit
|
2021-08-26 14:20:04 +05:30
|
|
|
RACE_ENABLED: true
|
2020-12-17 19:30:47 +05:30
|
|
|
TEST_TAGS: gogit
|
2020-01-15 10:03:54 +05:30
|
|
|
TEST_LDAP: 1
|
2020-04-19 16:47:02 +05:30
|
|
|
USE_REPO_TEST_DIR: 1
|
2020-01-15 10:03:54 +05:30
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-02-23 04:46:02 +05:30
|
|
|
name: update_translations
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
2020-01-19 14:47:57 +05:30
|
|
|
arch: arm64
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2019-07-01 05:23:41 +05:30
|
|
|
event:
|
2021-02-23 04:46:02 +05:30
|
|
|
- cron
|
|
|
|
cron:
|
|
|
|
- update_translations
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
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
|
2021-07-16 07:24:39 +05:30
|
|
|
image: alpine:3.13
|
2019-07-01 05:23:41 +05:30
|
|
|
commands:
|
2020-04-04 00:59:12 +05:30
|
|
|
- ./build/update-locales.sh
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
- name: push
|
|
|
|
pull: always
|
|
|
|
image: appleboy/drone-git-push
|
|
|
|
settings:
|
|
|
|
author_email: "teabot@gitea.io"
|
|
|
|
author_name: GiteaBot
|
2021-05-11 05:57:56 +05:30
|
|
|
branch: main
|
2019-07-01 05:23:41 +05:30
|
|
|
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
|
|
|
|
|
2021-01-23 08:23:13 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-01-23 08:23:13 +05:30
|
|
|
name: update_gitignore_and_licenses
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
2021-03-01 04:38:33 +05:30
|
|
|
arch: arm64
|
2021-01-23 08:23:13 +05:30
|
|
|
|
|
|
|
trigger:
|
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2021-01-23 08:23:13 +05:30
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
cron:
|
|
|
|
- update_gitignore_and_licenses
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: download
|
2021-08-17 18:01:28 +05:30
|
|
|
image: golang:1.17
|
2021-01-23 08:23:13 +05:30
|
|
|
commands:
|
|
|
|
- timeout -s ABRT 40m make generate-license generate-gitignore
|
|
|
|
|
|
|
|
- name: push
|
|
|
|
pull: always
|
|
|
|
image: appleboy/drone-git-push
|
|
|
|
settings:
|
|
|
|
author_email: "teabot@gitea.io"
|
|
|
|
author_name: GiteaBot
|
2021-05-11 05:57:56 +05:30
|
|
|
branch: main
|
2021-01-23 08:23:13 +05:30
|
|
|
commit: true
|
|
|
|
commit_message: "[skip ci] Updated licenses and gitignores "
|
|
|
|
remote: "git@github.com:go-gitea/gitea.git"
|
|
|
|
environment:
|
|
|
|
GIT_PUSH_SSH_KEY:
|
|
|
|
from_secret: git_push_ssh_key
|
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2020-03-11 07:33:20 +05:30
|
|
|
name: release-latest
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2021-03-01 09:13:55 +05:30
|
|
|
workspace:
|
2021-03-01 10:27:58 +05:30
|
|
|
base: /source
|
|
|
|
path: /
|
2021-03-01 09:13:55 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
trigger:
|
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2019-07-01 05:23:41 +05:30
|
|
|
- "release/*"
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 10:03:54 +05:30
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
2020-08-14 07:59:00 +05:30
|
|
|
- name: static
|
|
|
|
pull: always
|
2021-12-06 06:18:38 +05:30
|
|
|
image: techknowlogick/xgo:go-1.17.x
|
2020-08-14 07:59:00 +05:30
|
|
|
commands:
|
2021-08-05 05:16:19 +05:30
|
|
|
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
|
2020-08-25 03:16:41 +05:30
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
|
|
|
- make release
|
2017-03-07 19:19:24 +05:30
|
|
|
environment:
|
2020-04-06 10:18:55 +05:30
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
2018-10-23 17:17:59 +05:30
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
- 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 07:33:20 +05:30
|
|
|
- name: release-branch
|
2019-07-01 05:23:41 +05:30
|
|
|
pull: always
|
2021-10-06 17:28:11 +05:30
|
|
|
image: woodpeckerci/plugin-s3:latest
|
2019-07-01 05:23:41 +05:30
|
|
|
settings:
|
|
|
|
acl: public-read
|
2021-05-13 00:38:33 +05:30
|
|
|
bucket: gitea-artifacts
|
2019-07-01 05:23:41 +05:30
|
|
|
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
|
|
|
|
|
2021-05-04 21:46:23 +05:30
|
|
|
- name: release-main
|
2021-10-06 17:28:11 +05:30
|
|
|
image: woodpeckerci/plugin-s3:latest
|
2019-07-01 05:23:41 +05:30
|
|
|
settings:
|
|
|
|
acl: public-read
|
2021-05-13 00:38:33 +05:30
|
|
|
bucket: gitea-artifacts
|
2019-07-01 05:23:41 +05:30
|
|
|
endpoint: https://storage.gitea.io
|
|
|
|
path_style: true
|
|
|
|
source: "dist/release/*"
|
|
|
|
strip_prefix: dist/release/
|
2021-05-04 21:46:23 +05:30
|
|
|
target: /gitea/main
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: aws_access_key_id
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: aws_secret_access_key
|
|
|
|
when:
|
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2019-07-01 05:23:41 +05:30
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: release-version
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2021-03-01 09:13:55 +05:30
|
|
|
workspace:
|
2021-03-01 10:27:58 +05:30
|
|
|
base: /source
|
|
|
|
path: /
|
2021-03-01 09:13:55 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 10:03:54 +05:30
|
|
|
- testing-arm64
|
|
|
|
- testing-amd64
|
2019-07-01 05:23:41 +05:30
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
pull: default
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: static
|
|
|
|
pull: always
|
2021-12-06 06:18:38 +05:30
|
|
|
image: techknowlogick/xgo:go-1.17.x
|
2016-11-06 23:02:54 +05:30
|
|
|
commands:
|
2021-08-05 05:16:19 +05:30
|
|
|
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
|
2018-05-22 21:42:10 +05:30
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
2016-12-01 12:58:43 +05:30
|
|
|
- make release
|
2019-07-01 05:23:41 +05:30
|
|
|
environment:
|
2020-04-06 10:18:55 +05:30
|
|
|
GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
|
2019-07-01 05:23:41 +05:30
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2016-11-06 23:02:54 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
- 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 07:33:20 +05:30
|
|
|
- name: release-tag
|
2019-07-01 05:23:41 +05:30
|
|
|
pull: always
|
2021-10-06 17:28:11 +05:30
|
|
|
image: woodpeckerci/plugin-s3:latest
|
2019-07-01 05:23:41 +05:30
|
|
|
settings:
|
|
|
|
acl: public-read
|
2021-05-13 00:38:33 +05:30
|
|
|
bucket: gitea-artifacts
|
2019-07-01 05:23:41 +05:30
|
|
|
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
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2019-07-01 05:23:41 +05:30
|
|
|
name: docs
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
2020-01-15 11:29:13 +05:30
|
|
|
arch: arm64
|
2019-07-01 05:23:41 +05:30
|
|
|
|
2020-03-29 17:26:58 +05:30
|
|
|
depends_on:
|
|
|
|
- compliance
|
|
|
|
|
2021-01-24 17:51:33 +05:30
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
|
|
|
- pull_request
|
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
steps:
|
|
|
|
- name: build-docs
|
|
|
|
pull: always
|
2020-01-15 11:29:13 +05:30
|
|
|
image: plugins/hugo:latest
|
2017-11-27 03:14:32 +05:30
|
|
|
commands:
|
2020-01-15 11:29:13 +05:30
|
|
|
- apk add --no-cache make bash curl
|
2017-11-27 03:14:32 +05:30
|
|
|
- cd docs
|
2020-01-25 22:12:38 +05:30
|
|
|
- make trans-copy clean build
|
2017-11-27 03:14:32 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
- name: publish-docs
|
|
|
|
pull: always
|
2020-01-15 11:29:13 +05:30
|
|
|
image: techknowlogick/drone-netlify:latest
|
2019-07-01 05:23:41 +05:30
|
|
|
settings:
|
|
|
|
path: docs/public/
|
|
|
|
site_id: d2260bae-7861-4c02-8646-8f6440b12672
|
|
|
|
environment:
|
|
|
|
NETLIFY_TOKEN:
|
|
|
|
from_secret: netlify_token
|
2019-07-01 13:02:50 +05:30
|
|
|
when:
|
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2019-07-01 13:02:50 +05:30
|
|
|
event:
|
|
|
|
- push
|
2016-12-24 04:30:48 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-07-14 22:38:43 +05:30
|
|
|
name: docker-linux-amd64-release-version
|
2016-11-06 23:02:54 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2016-11-06 23:02:54 +05:30
|
|
|
|
2019-07-17 20:17:34 +05:30
|
|
|
depends_on:
|
2020-01-15 10:03:54 +05:30
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2019-07-17 20:17:34 +05:30
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/tags/**"
|
2021-02-23 09:25:35 +05:30
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- cron
|
2019-07-17 20:17:34 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
2016-11-06 23:02:54 +05:30
|
|
|
|
2019-07-17 20:17:34 +05:30
|
|
|
- name: publish
|
2019-07-01 05:23:41 +05:30
|
|
|
pull: always
|
2021-07-13 00:50:44 +05:30
|
|
|
image: techknowlogick/drone-docker:latest
|
2019-07-01 05:23:41 +05:30
|
|
|
settings:
|
2019-07-17 20:17:34 +05:30
|
|
|
auto_tag: true
|
2019-07-24 22:51:12 +05:30
|
|
|
auto_tag_suffix: linux-amd64
|
2019-07-01 05:23:41 +05:30
|
|
|
repo: gitea/gitea
|
2019-08-05 03:28:16 +05:30
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
2019-07-17 20:17:34 +05:30
|
|
|
password:
|
2019-07-01 05:23:41 +05:30
|
|
|
from_secret: docker_password
|
2019-07-17 20:17:34 +05:30
|
|
|
username:
|
2019-07-01 05:23:41 +05:30
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
2019-07-17 20:17:34 +05:30
|
|
|
exclude:
|
|
|
|
- pull_request
|
2019-03-18 00:47:18 +05:30
|
|
|
|
2020-11-01 06:28:22 +05:30
|
|
|
- name: publish-rootless
|
2021-07-13 00:50:44 +05:30
|
|
|
image: techknowlogick/drone-docker:latest
|
2020-11-01 06:28:22 +05:30
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-amd64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2021-07-14 22:38:43 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-07-14 22:38:43 +05:30
|
|
|
name: docker-linux-amd64-release
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- cron
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
|
|
|
pull: always
|
|
|
|
image: techknowlogick/drone-docker:latest
|
|
|
|
settings:
|
|
|
|
auto_tag: false
|
|
|
|
tags: dev-linux-amd64
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
|
|
|
image: techknowlogick/drone-docker:latest
|
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: false
|
|
|
|
tags: dev-linux-amd64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2019-07-24 22:51:12 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2020-01-13 16:10:10 +05:30
|
|
|
name: docker-linux-arm64-dry-run
|
2019-07-24 22:51:12 +05:30
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-13 16:10:10 +05:30
|
|
|
- compliance
|
2019-07-24 22:51:12 +05:30
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/pull/**"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: dryrun
|
|
|
|
pull: always
|
2021-07-13 00:50:44 +05:30
|
|
|
image: techknowlogick/drone-docker:latest
|
2019-07-24 22:51:12 +05:30
|
|
|
settings:
|
|
|
|
dry_run: true
|
|
|
|
repo: gitea/gitea
|
|
|
|
tags: linux-arm64
|
2019-08-05 03:28:16 +05:30
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
2020-11-06 13:05:10 +05:30
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
2019-07-24 22:51:12 +05:30
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-13 16:10:10 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-07-14 22:38:43 +05:30
|
|
|
name: docker-linux-arm64-release-version
|
2020-01-13 16:10:10 +05:30
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 10:03:54 +05:30
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2020-01-13 16:10:10 +05:30
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/tags/**"
|
2021-02-23 09:25:35 +05:30
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- cron
|
|
|
|
|
2020-01-13 16:10:10 +05:30
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
2019-07-24 22:51:12 +05:30
|
|
|
- name: publish
|
|
|
|
pull: always
|
2021-07-13 00:50:44 +05:30
|
|
|
image: techknowlogick/drone-docker:latest
|
2019-07-24 22:51:12 +05:30
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm64
|
|
|
|
repo: gitea/gitea
|
2019-08-05 03:28:16 +05:30
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
2019-07-24 22:51:12 +05:30
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2020-11-01 06:28:22 +05:30
|
|
|
- name: publish-rootless
|
2021-07-13 00:50:44 +05:30
|
|
|
image: techknowlogick/drone-docker:latest
|
2020-11-01 06:28:22 +05:30
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2019-07-24 22:51:12 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-07-14 22:38:43 +05:30
|
|
|
name: docker-linux-arm64-release
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- cron
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
|
|
|
pull: always
|
|
|
|
image: techknowlogick/drone-docker:latest
|
|
|
|
settings:
|
|
|
|
auto_tag: false
|
|
|
|
tags: dev-linux-arm64
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
|
|
|
image: techknowlogick/drone-docker:latest
|
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: false
|
|
|
|
tags: dev-linux-arm64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=off
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-07-14 22:38:43 +05:30
|
|
|
name: docker-manifest-version
|
2019-07-24 22:51:12 +05:30
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-11-01 17:00:01 +05:30
|
|
|
- name: manifest-rootless
|
2019-07-24 22:51:12 +05:30
|
|
|
pull: always
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
2020-11-03 01:20:13 +05:30
|
|
|
auto_tag: true
|
2019-07-24 22:51:12 +05:30
|
|
|
ignore_missing: true
|
2020-11-01 17:00:01 +05:30
|
|
|
spec: docker/manifest.rootless.tmpl
|
2019-07-24 22:51:12 +05:30
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
|
2020-11-01 17:00:01 +05:30
|
|
|
- name: manifest
|
2020-11-01 06:28:22 +05:30
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
2020-11-01 17:00:01 +05:30
|
|
|
spec: docker/manifest.tmpl
|
2020-11-01 06:28:22 +05:30
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-11-01 17:00:01 +05:30
|
|
|
|
2019-07-24 22:51:12 +05:30
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/tags/**"
|
2021-02-23 09:25:35 +05:30
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- cron
|
2019-07-24 22:51:12 +05:30
|
|
|
|
2021-07-14 22:38:43 +05:30
|
|
|
depends_on:
|
|
|
|
- docker-linux-amd64-release-version
|
|
|
|
- docker-linux-arm64-release-version
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2021-07-14 22:38:43 +05:30
|
|
|
name: docker-manifest
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: manifest-rootless
|
|
|
|
pull: always
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: false
|
|
|
|
ignore_missing: true
|
|
|
|
spec: docker/manifest.rootless.tmpl
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
|
|
|
|
- name: manifest
|
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: false
|
|
|
|
ignore_missing: true
|
|
|
|
spec: docker/manifest.tmpl
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- cron
|
|
|
|
|
2019-07-24 22:51:12 +05:30
|
|
|
depends_on:
|
2020-01-13 16:10:10 +05:30
|
|
|
- docker-linux-amd64-release
|
|
|
|
- docker-linux-arm64-release
|
2019-07-24 22:51:12 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 11:28:34 +05:30
|
|
|
type: docker
|
2020-01-15 07:44:21 +05:30
|
|
|
name: notifications
|
2018-05-11 13:25:32 +05:30
|
|
|
|
2019-07-01 05:23:41 +05:30
|
|
|
platform:
|
|
|
|
os: linux
|
2020-01-15 07:44:21 +05:30
|
|
|
arch: arm64
|
2019-07-01 05:23:41 +05:30
|
|
|
|
2019-12-09 03:54:17 +05:30
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2020-01-15 07:44:21 +05:30
|
|
|
trigger:
|
|
|
|
branch:
|
2021-05-04 21:46:23 +05:30
|
|
|
- main
|
2020-01-15 07:44:21 +05:30
|
|
|
- "release/*"
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- tag
|
2019-07-01 05:23:41 +05:30
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
2020-01-15 10:03:54 +05:30
|
|
|
- testing-amd64
|
|
|
|
- testing-arm64
|
2019-07-01 05:23:41 +05:30
|
|
|
- release-version
|
2020-03-11 07:33:20 +05:30
|
|
|
- release-latest
|
2020-01-13 16:10:10 +05:30
|
|
|
- docker-linux-amd64-release
|
|
|
|
- docker-linux-arm64-release
|
2021-07-14 22:38:43 +05:30
|
|
|
- docker-linux-amd64-release-version
|
|
|
|
- docker-linux-arm64-release-version
|
2019-07-24 22:51:12 +05:30
|
|
|
- docker-manifest
|
2021-07-14 22:38:43 +05:30
|
|
|
- docker-manifest-version
|
2019-07-01 05:23:41 +05:30
|
|
|
- docs
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: discord
|
|
|
|
pull: always
|
2020-01-15 07:44:21 +05:30
|
|
|
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-07-01 05:23:41 +05:30
|
|
|
from_secret: discord_webhook_id
|
2020-01-15 07:44:21 +05:30
|
|
|
webhook_token:
|
2019-07-01 05:23:41 +05:30
|
|
|
from_secret: discord_webhook_token
|