mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
ee97e6a66a
* change to new code location * vendor * tagged version v0.2.0 * gitea-vet v0.2.1 Co-authored-by: techknowlogick <techknowlogick@gitea.io>
45 lines
584 B
YAML
Vendored
45 lines
584 B
YAML
Vendored
---
|
|
kind: pipeline
|
|
name: compliance
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
trigger:
|
|
event:
|
|
- pull_request
|
|
|
|
steps:
|
|
- name: check
|
|
pull: always
|
|
image: golang:1.14
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- make build
|
|
- make lint
|
|
- make vet
|
|
|
|
---
|
|
kind: pipeline
|
|
name: build-master
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: build
|
|
pull: always
|
|
image: techknowlogick/xgo:latest
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- make build |