33 lines
504 B
YAML
33 lines
504 B
YAML
---
|
|
kind: pipeline
|
|
name: go1-13
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.13
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- go build -v
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
---
|
|
kind: pipeline
|
|
name: go1-16
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.16
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
commands:
|
|
- go build -v
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic |