2020-02-28 15:21:18 +05:30
|
|
|
kind: pipeline
|
2020-08-28 08:17:17 +05:30
|
|
|
name: go1-14
|
2020-02-28 15:21:18 +05:30
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2020-08-28 08:17:17 +05:30
|
|
|
image: golang:1.14
|
2020-02-28 15:21:18 +05:30
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn
|
|
|
|
commands:
|
|
|
|
- go build -v
|
|
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-08-28 08:17:17 +05:30
|
|
|
name: go1-15
|
2020-02-28 15:21:18 +05:30
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2020-08-28 08:17:17 +05:30
|
|
|
image: golang:1.15
|
2020-02-28 15:21:18 +05:30
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn
|
|
|
|
commands:
|
|
|
|
- go build -v
|
|
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|