Files
Atay-Makhzan/.drone.yml
T

427 lines
8.5 KiB
YAML
Raw Normal View History

2019-07-01 07:53:41 +08:00
---
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-07-01 07:53:41 +08:00
trigger:
event:
- tag
volumes:
- name: deps
temp: {}
2019-07-01 07:53:41 +08:00
steps:
- name: fetch-tags
image: docker:git
pull: always
2019-07-01 07:53:41 +08:00
commands:
- git fetch --tags --force
- name: deps-frontend
image: node:20
pull: always
commands:
- make deps-frontend
- name: deps-backend
image: gitea/test_env:linux-1.20-amd64
2019-07-01 07:53:41 +08:00
pull: always
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
pull: always
2016-11-06 18:32:54 +01:00
commands:
# Upgrade to node 20 once https://github.com/techknowlogick/xgo/issues/163 is resolved
2022-09-04 00:20:46 +02:00
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get -qqy install nodejs
- export PATH=$PATH:$GOPATH/bin
- make release
2019-07-01 07:53:41 +08:00
environment:
GOPROXY: https://goproxy.io # proxy.golang.org is blocked in China, this proxy is not
2019-07-01 07:53:41 +08:00
TAGS: bindata sqlite sqlite_unlock_notify
2022-09-04 00:20:46 +02:00
DEBIAN_FRONTEND: noninteractive
2022-01-30 17:40:44 -05:00
depends_on: [fetch-tags]
volumes:
- name: deps
path: /go
2016-11-06 18:32:54 +01:00
2019-07-01 07:53:41 +08:00
- name: gpg-sign
image: plugins/gpgsign:1
pull: always
2019-07-01 07:53:41 +08: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-07-01 07:53:41 +08:00
- name: release-tag
image: woodpeckerci/plugin-s3:latest
pull: always
2019-07-01 07:53:41 +08: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-07-01 07:53:41 +08: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-07-01 07:53:41 +08:00
- name: github
image: plugins/github-release:latest
pull: always
2019-07-01 07:53:41 +08:00
settings:
files:
- "dist/release/*"
file_exists: overwrite
2019-07-01 07:53:41 +08:00
environment:
GITHUB_TOKEN:
from_secret: github_token
2022-01-30 17:40:44 -05:00
depends_on: [gpg-sign]
2019-07-01 07:53:41 +08:00
---
kind: pipeline
type: docker
2021-07-14 13:08:43 -04:00
name: docker-linux-amd64-release-version
2016-11-06 18:32:54 +01:00
2019-07-01 07:53:41 +08:00
platform:
os: linux
arch: amd64
2016-11-06 18:32:54 +01:00
trigger:
ref:
include:
- "refs/tags/**"
exclude:
- "refs/tags/**-rc*"
paths:
exclude:
- "docs/**"
2019-07-01 07:53:41 +08:00
steps:
- name: fetch-tags
image: docker:git
pull: always
2019-07-01 07:53:41 +08:00
commands:
- git fetch --tags --force
2016-11-06 18:32:54 +01:00
- name: publish
2023-03-11 16:08:56 -05:00
image: plugins/docker:latest
pull: always
2019-07-01 07:53:41 +08:00
settings:
auto_tag: true
auto_tag_suffix: linux-amd64
2019-07-01 07:53:41 +08:00
repo: gitea/gitea
build_args:
- GOPROXY=https://goproxy.io
password:
2019-07-01 07:53:41 +08:00
from_secret: docker_password
username:
2019-07-01 07:53:41 +08:00
from_secret: docker_username
2023-03-11 16:08:56 -05:00
environment:
PLUGIN_MIRROR:
from_secret: plugin_mirror
DOCKER_BUILDKIT: 1
2019-07-01 07:53:41 +08:00
when:
event:
exclude:
- pull_request
2019-03-18 03:17:18 +08:00
2020-11-01 01:58:22 +01:00
- name: publish-rootless
2023-03-11 16:08:56 -05:00
image: plugins/docker:latest
2020-11-01 01:58:22 +01:00
settings:
dockerfile: Dockerfile.rootless
auto_tag: true
auto_tag_suffix: linux-amd64-rootless
repo: gitea/gitea
build_args:
- GOPROXY=https://goproxy.io
2020-11-01 01:58:22 +01: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-11-01 01:58:22 +01:00
when:
event:
exclude:
- pull_request
---
kind: pipeline
type: docker
name: docker-linux-amd64-release-candidate-version
platform:
os: linux
arch: amd64
trigger:
ref:
- "refs/tags/**-rc*"
paths:
exclude:
- "docs/**"
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
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
when:
event:
exclude:
- pull_request
- name: publish-rootless
2023-03-11 16:08:56 -05:00
image: plugins/docker:latest
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
when:
event:
exclude:
- pull_request
2020-11-01 01:58:22 +01:00
---
kind: pipeline
type: docker
2021-07-14 13:08:43 -04:00
name: docker-linux-arm64-release-version
platform:
os: linux
arch: arm64
trigger:
ref:
include:
- "refs/tags/**"
exclude:
- "refs/tags/**-rc*"
paths:
exclude:
- "docs/**"
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
pull: always
settings:
auto_tag: true
auto_tag_suffix: 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
when:
event:
exclude:
- pull_request
2020-11-01 01:58:22 +01:00
- name: publish-rootless
2023-03-11 16:08:56 -05:00
image: plugins/docker:latest
2020-11-01 01:58:22 +01:00
settings:
dockerfile: Dockerfile.rootless
auto_tag: true
auto_tag_suffix: linux-arm64-rootless
repo: gitea/gitea
build_args:
- GOPROXY=https://goproxy.io
2020-11-01 01:58:22 +01: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-11-01 01:58:22 +01:00
when:
event:
exclude:
- pull_request
---
kind: pipeline
type: docker
name: docker-linux-arm64-release-candidate-version
platform:
os: linux
arch: arm64
trigger:
ref:
- "refs/tags/**-rc*"
paths:
exclude:
- "docs/**"
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
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
when:
event:
exclude:
- pull_request
- name: publish-rootless
2023-03-11 16:08:56 -05:00
image: plugins/docker:latest
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
when:
event:
exclude:
- pull_request
2021-07-14 13:08:43 -04:00
---
kind: pipeline
type: docker
2021-07-14 13:08:43 -04:00
name: docker-manifest-version
platform:
os: linux
arch: amd64
steps:
- name: manifest-rootless
image: plugins/manifest
pull: always
settings:
2020-11-02 20:50:13 +01:00
auto_tag: true
ignore_missing: true
spec: docker/manifest.rootless.tmpl
password:
from_secret: docker_password
username:
from_secret: docker_username
- name: manifest
2020-11-01 01:58:22 +01:00
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
spec: docker/manifest.tmpl
2020-11-01 01:58:22 +01:00
password:
from_secret: docker_password
username:
from_secret: docker_username
trigger:
ref:
- "refs/tags/**"
paths:
exclude:
- "docs/**"
2021-07-14 13:08:43 -04:00
depends_on:
- docker-linux-amd64-release-version
- docker-linux-amd64-release-candidate-version
2021-07-14 13:08:43 -04:00
- docker-linux-arm64-release-version
- docker-linux-arm64-release-candidate-version