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