mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-23 04:12:00 +01:00
73 lines
1.1 KiB
YAML
73 lines
1.1 KiB
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: compliance
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: arm64
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- pull_request
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
pull: always
|
||
|
image: golang:1.13
|
||
|
environment:
|
||
|
GOPROXY: https://goproxy.cn
|
||
|
commands:
|
||
|
- go test -race
|
||
|
- go build
|
||
|
|
||
|
- name: check
|
||
|
pull: always
|
||
|
image: golang:1.13
|
||
|
environment:
|
||
|
GOPROXY: https://goproxy.cn
|
||
|
commands:
|
||
|
- make lint
|
||
|
|
||
|
---
|
||
|
kind: pipeline
|
||
|
name: release
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- master
|
||
|
event:
|
||
|
- push
|
||
|
- tag
|
||
|
|
||
|
steps:
|
||
|
- name: fetch-tags
|
||
|
pull: always
|
||
|
image: docker:git
|
||
|
commands:
|
||
|
- git fetch --tags --force
|
||
|
|
||
|
- name: release
|
||
|
pull: always
|
||
|
image: techknowlogick/xgo:latest
|
||
|
environment:
|
||
|
GOPROXY: https://goproxy.cn
|
||
|
commands:
|
||
|
- export PATH=$PATH:$GOPATH/bin
|
||
|
- make release
|
||
|
|
||
|
- name: gitea
|
||
|
pull: always
|
||
|
image: plugins/gitea-release:1
|
||
|
settings:
|
||
|
api_key:
|
||
|
from_secret: gitea_token
|
||
|
base_url: https://gitea.com
|
||
|
files:
|
||
|
- "dist/release/*"
|
||
|
when:
|
||
|
event:
|
||
|
- tag
|