2019-08-23 10:40:30 -06:00
|
|
|
kind: pipeline
|
2020-11-02 23:04:09 -07:00
|
|
|
name: golang-1-14
|
2019-08-23 10:40:30 -06:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2020-11-02 23:04:09 -07:00
|
|
|
image: golang:1.14
|
2019-08-23 10:40:30 -06:00
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn
|
|
|
|
commands:
|
|
|
|
- go build -v
|
|
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-11-02 23:04:09 -07:00
|
|
|
name: golang-1-15
|
2019-08-23 10:40:30 -06:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2020-11-02 23:04:09 -07:00
|
|
|
image: golang:1.15
|
2019-08-23 10:40:30 -06:00
|
|
|
environment:
|
|
|
|
GOPROXY: https://goproxy.cn
|
|
|
|
commands:
|
|
|
|
- go build -v
|
|
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|