mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-22 19:51:58 +01:00
0a6162ad05
Add CSV output Refactor requireToken and add release creation Start releases Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/jolheiser/sip/pulls/16
99 lines
1.5 KiB
YAML
99 lines
1.5 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:
|
|
- make test
|
|
- go build
|
|
|
|
- name: check
|
|
pull: always
|
|
image: golang:1.13
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- make lint
|
|
- make vet
|
|
|
|
---
|
|
kind: pipeline
|
|
name: test-release
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: fetch-tags
|
|
pull: always
|
|
image: docker:git
|
|
commands:
|
|
- git fetch --tags --force
|
|
|
|
- name: make-release
|
|
pull: always
|
|
image: techknowlogick/xgo:latest
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- export PATH=$PATH:$GOPATH/bin
|
|
- make release
|
|
|
|
---
|
|
kind: pipeline
|
|
name: release
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
trigger:
|
|
event:
|
|
- tag
|
|
|
|
steps:
|
|
- name: fetch-tags
|
|
pull: always
|
|
image: docker:git
|
|
commands:
|
|
- git fetch --tags --force
|
|
|
|
- name: make-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/*"
|