2019-06-30 19:53:41 -04:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2020-03-10 22:03:20 -04:00
|
|
|
name: release-latest
|
2019-06-30 19:53:41 -04:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2021-02-28 22:43:55 -05:00
|
|
|
workspace:
|
2021-02-28 23:57:58 -05:00
|
|
|
base: /source
|
|
|
|
path: /
|
2021-02-28 22:43:55 -05:00
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
trigger:
|
|
|
|
branch:
|
2021-05-04 12:16:23 -04:00
|
|
|
- main
|
2019-06-30 19:53:41 -04:00
|
|
|
- "release/*"
|
|
|
|
event:
|
|
|
|
- push
|
2023-02-20 08:08:41 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2019-06-30 19:53:41 -04:00
|
|
|
|
2022-02-12 02:08:53 -05:00
|
|
|
volumes:
|
|
|
|
- name: deps
|
|
|
|
temp: {}
|
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
2022-02-12 02:08:53 -05:00
|
|
|
- name: deps-frontend
|
2022-07-13 11:45:08 -04:00
|
|
|
image: node:18
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
|
|
|
commands:
|
|
|
|
- make deps-frontend
|
|
|
|
|
|
|
|
- name: deps-backend
|
2023-03-14 21:53:14 -04:00
|
|
|
image: gitea/test_env:linux-1.20-amd64
|
2020-08-13 22:29:00 -04:00
|
|
|
pull: always
|
2022-02-12 02:08:53 -05:00
|
|
|
commands:
|
|
|
|
- make deps-backend
|
|
|
|
volumes:
|
|
|
|
- name: deps
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: static
|
2023-02-03 11:23:52 -05:00
|
|
|
image: techknowlogick/xgo:go-1.20.x
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2020-08-13 22:29:00 -04:00
|
|
|
commands:
|
2022-07-14 04:09:26 -04:00
|
|
|
# Upgrade to node 18 once https://github.com/techknowlogick/xgo/issues/163 is resolved
|
2022-09-03 18:20:46 -04:00
|
|
|
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get -qqy install nodejs
|
2020-08-24 17:46:41 -04:00
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
|
|
|
- make release
|
2017-03-07 08:49:24 -05:00
|
|
|
environment:
|
2022-03-28 13:01:07 -04:00
|
|
|
GOPROXY: https://goproxy.io # proxy.golang.org is blocked in China, this proxy is not
|
2018-10-23 07:47:59 -04:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2022-09-03 18:20:46 -04:00
|
|
|
DEBIAN_FRONTEND: noninteractive
|
2022-02-12 02:08:53 -05:00
|
|
|
volumes:
|
|
|
|
- name: deps
|
|
|
|
path: /go
|
2019-06-30 19:53:41 -04:00
|
|
|
|
|
|
|
- name: gpg-sign
|
|
|
|
image: plugins/gpgsign:1
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
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-10 22:03:20 -04:00
|
|
|
- name: release-branch
|
2021-10-06 07:58:11 -04:00
|
|
|
image: woodpeckerci/plugin-s3:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
settings:
|
2023-02-05 16:42:48 -05:00
|
|
|
acl:
|
|
|
|
from_secret: aws_s3_acl
|
|
|
|
region:
|
|
|
|
from_secret: aws_s3_region
|
|
|
|
bucket:
|
|
|
|
from_secret: aws_s3_bucket
|
|
|
|
endpoint:
|
|
|
|
from_secret: aws_s3_endpoint
|
|
|
|
path_style:
|
|
|
|
from_secret: aws_s3_path_style
|
2019-06-30 19:53:41 -04:00
|
|
|
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 12:16:23 -04:00
|
|
|
- name: release-main
|
2021-10-06 07:58:11 -04:00
|
|
|
image: woodpeckerci/plugin-s3:latest
|
2019-06-30 19:53:41 -04:00
|
|
|
settings:
|
2023-02-05 16:42:48 -05:00
|
|
|
acl:
|
|
|
|
from_secret: aws_s3_acl
|
|
|
|
region:
|
|
|
|
from_secret: aws_s3_region
|
|
|
|
bucket:
|
|
|
|
from_secret: aws_s3_bucket
|
|
|
|
endpoint:
|
|
|
|
from_secret: aws_s3_endpoint
|
|
|
|
path_style:
|
|
|
|
from_secret: aws_s3_path_style
|
2019-06-30 19:53:41 -04:00
|
|
|
source: "dist/release/*"
|
|
|
|
strip_prefix: dist/release/
|
2021-05-04 12:16:23 -04:00
|
|
|
target: /gitea/main
|
2019-06-30 19:53:41 -04:00
|
|
|
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 12:16:23 -04:00
|
|
|
- main
|
2019-06-30 19:53:41 -04:00
|
|
|
event:
|
|
|
|
- push
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: release-version
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2021-02-28 22:43:55 -05:00
|
|
|
workspace:
|
2021-02-28 23:57:58 -05:00
|
|
|
base: /source
|
|
|
|
path: /
|
2021-02-28 22:43:55 -05:00
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
|
2022-02-12 02:08:53 -05:00
|
|
|
volumes:
|
|
|
|
- name: deps
|
|
|
|
temp: {}
|
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
2022-02-12 02:08:53 -05:00
|
|
|
- name: deps-frontend
|
2022-07-13 11:45:08 -04:00
|
|
|
image: node:18
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
|
|
|
commands:
|
|
|
|
- make deps-frontend
|
|
|
|
|
|
|
|
- name: deps-backend
|
2023-03-14 21:53:14 -04:00
|
|
|
image: gitea/test_env:linux-1.20-amd64
|
2019-06-30 19:53:41 -04:00
|
|
|
pull: always
|
2022-02-12 02:08:53 -05:00
|
|
|
commands:
|
|
|
|
- make deps-backend
|
|
|
|
volumes:
|
|
|
|
- name: deps
|
|
|
|
path: /go
|
|
|
|
|
|
|
|
- name: static
|
2023-02-03 11:23:52 -05:00
|
|
|
image: techknowlogick/xgo:go-1.20.x
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2016-11-06 12:32:54 -05:00
|
|
|
commands:
|
2022-07-14 04:09:26 -04:00
|
|
|
# Upgrade to node 18 once https://github.com/techknowlogick/xgo/issues/163 is resolved
|
2022-09-03 18:20:46 -04:00
|
|
|
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get -qqy install nodejs
|
2018-05-22 12:12:10 -04:00
|
|
|
- export PATH=$PATH:$GOPATH/bin
|
2016-12-01 02:28:43 -05:00
|
|
|
- make release
|
2019-06-30 19:53:41 -04:00
|
|
|
environment:
|
2022-03-28 13:01:07 -04:00
|
|
|
GOPROXY: https://goproxy.io # proxy.golang.org is blocked in China, this proxy is not
|
2019-06-30 19:53:41 -04:00
|
|
|
TAGS: bindata sqlite sqlite_unlock_notify
|
2022-09-03 18:20:46 -04:00
|
|
|
DEBIAN_FRONTEND: noninteractive
|
2022-01-30 17:40:44 -05:00
|
|
|
depends_on: [fetch-tags]
|
2022-02-12 02:08:53 -05:00
|
|
|
volumes:
|
|
|
|
- name: deps
|
|
|
|
path: /go
|
2016-11-06 12:32:54 -05:00
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
- name: gpg-sign
|
|
|
|
image: plugins/gpgsign:1
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
settings:
|
|
|
|
detach_sign: true
|
|
|
|
excludes:
|
|
|
|
- "dist/release/*.sha256"
|
|
|
|
files:
|
|
|
|
- "dist/release/*"
|
|
|
|
environment:
|
|
|
|
GPGSIGN_KEY:
|
|
|
|
from_secret: gpgsign_key
|
|
|
|
GPGSIGN_PASSPHRASE:
|
|
|
|
from_secret: gpgsign_passphrase
|
2022-01-30 17:40:44 -05:00
|
|
|
depends_on: [static]
|
2019-06-30 19:53:41 -04:00
|
|
|
|
2020-03-10 22:03:20 -04:00
|
|
|
- name: release-tag
|
2021-10-06 07:58:11 -04:00
|
|
|
image: woodpeckerci/plugin-s3:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
settings:
|
2023-02-05 16:42:48 -05:00
|
|
|
acl:
|
|
|
|
from_secret: aws_s3_acl
|
|
|
|
region:
|
|
|
|
from_secret: aws_s3_region
|
|
|
|
bucket:
|
|
|
|
from_secret: aws_s3_bucket
|
|
|
|
endpoint:
|
|
|
|
from_secret: aws_s3_endpoint
|
|
|
|
path_style:
|
|
|
|
from_secret: aws_s3_path_style
|
2019-06-30 19:53:41 -04:00
|
|
|
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
|
2022-01-30 17:40:44 -05:00
|
|
|
depends_on: [gpg-sign]
|
2019-06-30 19:53:41 -04:00
|
|
|
|
|
|
|
- name: github
|
2022-03-03 09:28:41 -05:00
|
|
|
image: plugins/github-release:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
settings:
|
|
|
|
files:
|
|
|
|
- "dist/release/*"
|
2022-03-03 09:28:41 -05:00
|
|
|
file_exists: overwrite
|
2019-06-30 19:53:41 -04:00
|
|
|
environment:
|
|
|
|
GITHUB_TOKEN:
|
|
|
|
from_secret: github_token
|
2022-01-30 17:40:44 -05:00
|
|
|
depends_on: [gpg-sign]
|
2019-06-30 19:53:41 -04:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2021-07-14 13:08:43 -04:00
|
|
|
name: docker-linux-amd64-release-version
|
2016-11-06 12:32:54 -05:00
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2016-11-06 12:32:54 -05:00
|
|
|
|
2019-07-17 10:47:34 -04:00
|
|
|
trigger:
|
|
|
|
ref:
|
2023-02-19 09:24:08 -05:00
|
|
|
include:
|
|
|
|
- "refs/tags/**"
|
|
|
|
exclude:
|
|
|
|
- "refs/tags/**-rc*"
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2019-07-17 10:47:34 -04:00
|
|
|
|
2019-06-30 19:53:41 -04:00
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
2016-11-06 12:32:54 -05:00
|
|
|
|
2019-07-17 10:47:34 -04:00
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-06-30 19:53:41 -04:00
|
|
|
settings:
|
2019-07-17 10:47:34 -04:00
|
|
|
auto_tag: true
|
2019-07-24 13:21:12 -04:00
|
|
|
auto_tag_suffix: linux-amd64
|
2019-06-30 19:53:41 -04:00
|
|
|
repo: gitea/gitea
|
2019-08-04 17:58:16 -04:00
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2019-07-17 10:47:34 -04:00
|
|
|
password:
|
2019-06-30 19:53:41 -04:00
|
|
|
from_secret: docker_password
|
2019-07-17 10:47:34 -04:00
|
|
|
username:
|
2019-06-30 19:53:41 -04:00
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2019-06-30 19:53:41 -04:00
|
|
|
when:
|
|
|
|
event:
|
2019-07-17 10:47:34 -04:00
|
|
|
exclude:
|
|
|
|
- pull_request
|
2019-03-17 15:17:18 -04:00
|
|
|
|
2020-10-31 20:58:22 -04:00
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2020-10-31 20:58:22 -04:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-amd64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2020-10-31 20:58:22 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2020-10-31 20:58:22 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
2023-02-19 09:24:08 -05:00
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: docker-linux-amd64-release-candidate-version
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/tags/**-rc*"
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2023-02-19 09:24:08 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
pull: always
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2023-02-19 09:24:08 -05:00
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
tags: ${DRONE_TAG##v}-linux-amd64
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=https://goproxy.io
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2023-02-19 09:24:08 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2023-02-19 09:24:08 -05:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
tags: ${DRONE_TAG##v}-linux-amd64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=https://goproxy.io
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2023-02-19 09:24:08 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
2020-10-31 20:58:22 -04:00
|
|
|
|
2021-07-14 13:08:43 -04:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2021-07-14 13:08:43 -04:00
|
|
|
name: docker-linux-amd64-release
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2021-07-14 13:08:43 -04:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2021-07-14 13:08:43 -04:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-04-24 17:59:57 -04:00
|
|
|
tags: nightly-linux-amd64
|
2021-07-14 13:08:43 -04:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2021-07-14 13:08:43 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2021-07-14 13:08:43 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2021-07-14 13:08:43 -04:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: false
|
2023-04-24 17:59:57 -04:00
|
|
|
tags: nightly-linux-amd64-rootless
|
2021-07-14 13:08:43 -04:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2021-07-14 13:08:43 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2021-07-14 13:08:43 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2022-02-03 16:44:51 -05:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docker-linux-amd64-release-branch
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/heads/release/v*"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2022-02-03 16:44:51 -05:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2022-02-03 16:44:51 -05:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-05-01 14:18:56 -04:00
|
|
|
tags: ${DRONE_BRANCH##release/v}-nightly-linux-amd64
|
2022-02-03 16:44:51 -05:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2022-02-03 16:44:51 -05:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2022-02-03 16:44:51 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-03 16:44:51 -05:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: false
|
2023-05-01 14:18:56 -04:00
|
|
|
tags: ${DRONE_BRANCH##release/v}-nightly-linux-amd64-rootless
|
2022-02-03 16:44:51 -05:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2022-02-03 16:44:51 -05:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2022-02-03 16:44:51 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2020-01-13 05:40:10 -05:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2021-07-14 13:08:43 -04:00
|
|
|
name: docker-linux-arm64-release-version
|
2020-01-13 05:40:10 -05:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
2023-02-19 09:24:08 -05:00
|
|
|
include:
|
|
|
|
- "refs/tags/**"
|
|
|
|
exclude:
|
|
|
|
- "refs/tags/**-rc*"
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2021-02-22 22:55:35 -05:00
|
|
|
|
2020-01-13 05:40:10 -05:00
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2020-01-13 05:40:10 -05:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
2019-07-24 13:21:12 -04:00
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-07-24 13:21:12 -04:00
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm64
|
|
|
|
repo: gitea/gitea
|
2019-08-04 17:58:16 -04:00
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2019-07-24 13:21:12 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2019-07-24 13:21:12 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2020-10-31 20:58:22 -04:00
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2020-10-31 20:58:22 -04:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: true
|
|
|
|
auto_tag_suffix: linux-arm64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2020-10-31 20:58:22 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2020-10-31 20:58:22 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2023-02-19 09:24:08 -05:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: docker-linux-arm64-release-candidate-version
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/tags/**-rc*"
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2023-02-19 09:24:08 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
|
|
|
pull: always
|
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2023-02-19 09:24:08 -05:00
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
tags: ${DRONE_TAG##v}-linux-arm64
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=https://goproxy.io
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2023-02-19 09:24:08 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2023-02-19 09:24:08 -05:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
tags: ${DRONE_TAG##v}-linux-arm64-rootless
|
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
|
|
|
- GOPROXY=https://goproxy.io
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2023-02-19 09:24:08 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2019-07-24 13:21:12 -04:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2021-07-14 13:08:43 -04:00
|
|
|
name: docker-linux-arm64-release
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/main
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2021-07-14 13:08:43 -04:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2021-07-14 13:08:43 -04:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2021-07-14 13:08:43 -04:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-04-24 17:59:57 -04:00
|
|
|
tags: nightly-linux-arm64
|
2021-07-14 13:08:43 -04:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2021-07-14 13:08:43 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2021-07-14 13:08:43 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2021-07-14 13:08:43 -04:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: false
|
2023-04-24 17:59:57 -04:00
|
|
|
tags: nightly-linux-arm64-rootless
|
2021-07-14 13:08:43 -04:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2021-07-14 13:08:43 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2021-07-14 13:08:43 -04:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
2022-02-03 16:44:51 -05:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: docker-linux-arm64-release-branch
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/heads/release/v*"
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: fetch-tags
|
|
|
|
image: docker:git
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2022-02-03 16:44:51 -05:00
|
|
|
commands:
|
|
|
|
- git fetch --tags --force
|
|
|
|
|
|
|
|
- name: publish
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2022-02-03 16:44:51 -05:00
|
|
|
settings:
|
|
|
|
auto_tag: false
|
2023-05-01 14:18:56 -04:00
|
|
|
tags: ${DRONE_BRANCH##release/v}-nightly-linux-arm64
|
2022-02-03 16:44:51 -05:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2022-02-03 16:44:51 -05:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2022-02-03 16:44:51 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: publish-rootless
|
2023-03-11 16:08:56 -05:00
|
|
|
image: plugins/docker:latest
|
2022-02-03 16:44:51 -05:00
|
|
|
settings:
|
|
|
|
dockerfile: Dockerfile.rootless
|
|
|
|
auto_tag: false
|
2023-05-01 14:18:56 -04:00
|
|
|
tags: ${DRONE_BRANCH##release/v}-nightly-linux-arm64-rootless
|
2022-02-03 16:44:51 -05:00
|
|
|
repo: gitea/gitea
|
|
|
|
build_args:
|
2022-03-28 13:01:07 -04:00
|
|
|
- GOPROXY=https://goproxy.io
|
2022-02-03 16:44:51 -05:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2023-03-11 16:08:56 -05:00
|
|
|
environment:
|
|
|
|
PLUGIN_MIRROR:
|
|
|
|
from_secret: plugin_mirror
|
|
|
|
DOCKER_BUILDKIT: 1
|
2022-02-03 16:44:51 -05:00
|
|
|
when:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
|
|
|
|
2021-07-14 13:08:43 -04:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2021-07-14 13:08:43 -04:00
|
|
|
name: docker-manifest-version
|
2019-07-24 13:21:12 -04:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2020-11-01 06:30:01 -05:00
|
|
|
- name: manifest-rootless
|
2019-07-24 13:21:12 -04:00
|
|
|
image: plugins/manifest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2019-07-24 13:21:12 -04:00
|
|
|
settings:
|
2020-11-02 14:50:13 -05:00
|
|
|
auto_tag: true
|
2019-07-24 13:21:12 -04:00
|
|
|
ignore_missing: true
|
2020-11-01 06:30:01 -05:00
|
|
|
spec: docker/manifest.rootless.tmpl
|
2019-07-24 13:21:12 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
|
2020-11-01 06:30:01 -05:00
|
|
|
- name: manifest
|
2020-10-31 20:58:22 -04:00
|
|
|
image: plugins/manifest
|
|
|
|
settings:
|
|
|
|
auto_tag: true
|
|
|
|
ignore_missing: true
|
2020-11-01 06:30:01 -05:00
|
|
|
spec: docker/manifest.tmpl
|
2020-10-31 20:58:22 -04:00
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
2020-11-01 06:30:01 -05:00
|
|
|
|
2019-07-24 13:21:12 -04:00
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- "refs/tags/**"
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2019-07-24 13:21:12 -04:00
|
|
|
|
2021-07-14 13:08:43 -04:00
|
|
|
depends_on:
|
|
|
|
- docker-linux-amd64-release-version
|
2023-02-19 09:24:08 -05:00
|
|
|
- docker-linux-amd64-release-candidate-version
|
2021-07-14 13:08:43 -04:00
|
|
|
- docker-linux-arm64-release-version
|
2023-02-19 09:24:08 -05:00
|
|
|
- docker-linux-arm64-release-candidate-version
|
2021-07-14 13:08:43 -04:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-11-19 00:58:34 -05:00
|
|
|
type: docker
|
2021-07-14 13:08:43 -04:00
|
|
|
name: docker-manifest
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: manifest-rootless
|
|
|
|
image: plugins/manifest
|
2022-02-12 02:08:53 -05:00
|
|
|
pull: always
|
2021-07-14 13:08:43 -04:00
|
|
|
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
|
2022-02-03 03:47:27 -05:00
|
|
|
- "refs/heads/release/v*"
|
2023-02-27 17:20:42 -05:00
|
|
|
paths:
|
|
|
|
exclude:
|
2023-04-09 14:05:12 -04:00
|
|
|
- "docs/**"
|
2021-07-14 13:08:43 -04:00
|
|
|
|
2019-07-24 13:21:12 -04:00
|
|
|
depends_on:
|
2020-01-13 05:40:10 -05:00
|
|
|
- docker-linux-amd64-release
|
|
|
|
- docker-linux-arm64-release
|
2022-02-03 16:44:51 -05:00
|
|
|
- docker-linux-amd64-release-branch
|
|
|
|
- docker-linux-arm64-release-branch
|