1
1
Fork 0
mirror of https://gitea.com/gitea/tea synced 2024-05-28 10:36:08 +02:00
tea/.drone.yml

190 lines
3.2 KiB
YAML
Raw Normal View History

2019-07-07 03:40:02 +02:00
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
pull: always
image: golang:1.16
2019-07-07 03:40:02 +02:00
environment:
GOPROXY: https://goproxy.cn
2019-07-07 03:40:02 +02:00
commands:
- make clean
- make vet
- make lint
- make fmt-check
- make misspell-check
- make test-vendor
- make build
when:
event:
- push
- tag
- pull_request
2019-07-07 03:40:02 +02:00
- name: unit-test
image: golang:1.16
2019-07-07 03:40:02 +02:00
commands:
- make unit-test-coverage
settings:
group: test
2019-07-07 03:40:02 +02:00
when:
branch:
- master
event:
- push
- pull_request
2019-07-07 03:40:02 +02:00
- name: release-test
image: golang:1.16
2019-07-07 03:40:02 +02:00
commands:
- make test
settings:
group: test
2019-07-07 03:40:02 +02:00
when:
branch:
- "release/*"
event:
- push
- pull_request
2019-07-07 03:40:02 +02:00
- name: tag-test
pull: always
image: golang:1.16
2019-07-07 03:40:02 +02:00
commands:
- make test
settings:
group: test
2019-07-07 03:40:02 +02:00
when:
event:
- tag
2019-07-07 03:40:02 +02:00
- name: static
image: golang:1.16
environment:
GOPROXY: https://goproxy.cn
2019-07-07 03:40:02 +02:00
commands:
- export PATH=$PATH:$GOPATH/bin
- make release
when:
event:
- push
- tag
2019-07-07 03:40:02 +02:00
- name: gpg-sign
pull: always
image: plugins/gpgsign:1
settings:
detach_sign: true
excludes:
2019-07-07 03:40:02 +02:00
- "dist/release/*.sha256"
files:
- "dist/release/*"
environment:
GPGSIGN_KEY:
from_secret: gpgsign_key
GPGSIGN_PASSPHRASE:
from_secret: gpgsign_passphrase
when:
event:
- push
- tag
2019-07-07 03:40:02 +02:00
- name: tag-release
pull: always
image: plugins/s3:1
settings:
acl: public-read
2019-07-07 03:40:02 +02:00
bucket: releases
endpoint: https://storage.gitea.io
path_style: true
2019-07-07 03:40:02 +02:00
source: "dist/release/*"
strip_prefix: dist/release/
2019-07-07 03:40:02 +02:00
target: "/tea/${DRONE_TAG##v}"
environment:
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: aws_secret_access_key
when:
event:
- tag
2019-07-07 03:40:02 +02:00
- name: release-branch-release
pull: always
image: plugins/s3:1
settings:
acl: public-read
2019-07-07 03:40:02 +02:00
bucket: releases
endpoint: https://storage.gitea.io
path_style: true
2019-07-07 03:40:02 +02:00
source: "dist/release/*"
strip_prefix: dist/release/
2019-07-07 03:40:02 +02:00
target: "/tea/${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
2019-07-07 03:40:02 +02:00
- name: release
pull: always
image: plugins/s3:1
settings:
acl: public-read
2019-07-07 03:40:02 +02:00
bucket: releases
endpoint: https://storage.gitea.io
path_style: true
2019-07-07 03:40:02 +02:00
source: "dist/release/*"
strip_prefix: dist/release/
target: /tea/master
2019-07-07 03:40:02 +02:00
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
- name: gitea
2019-07-07 03:40:02 +02:00
pull: always
2019-11-15 10:33:56 +01:00
image: plugins/gitea-release:1
2019-07-07 03:40:02 +02:00
settings:
files:
2019-07-07 03:40:02 +02:00
- "dist/release/*"
base_url: https://gitea.com
api_key:
from_secret: gitea_token
2019-07-07 03:40:02 +02:00
when:
event:
- tag
2019-07-07 03:40:02 +02:00
- name: discord
pull: always
image: appleboy/drone-discord:1.0.0
environment:
DISCORD_WEBHOOK_ID:
from_secret: discord_webhook_id
DISCORD_WEBHOOK_TOKEN:
from_secret: discord_webhook_token
when:
event:
- push
- tag
- pull_request
status:
- changed
- failure