2019-01-28 15:32:48 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: matrix-1
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2019-07-17 15:09:47 +00:00
|
|
|
pull: if-not-exists
|
2019-01-28 15:32:48 +00:00
|
|
|
image: golang:1.11
|
|
|
|
commands:
|
|
|
|
- go test -v ./...
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: redis
|
2019-07-17 15:09:47 +00:00
|
|
|
pull: if-not-exists
|
2019-01-28 15:32:48 +00:00
|
|
|
image: redis:2.6
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: matrix-2
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2019-07-17 15:09:47 +00:00
|
|
|
pull: if-not-exists
|
2019-01-28 15:32:48 +00:00
|
|
|
image: golang:1.10
|
|
|
|
commands:
|
|
|
|
- go test -v ./...
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: redis
|
2019-07-17 15:09:47 +00:00
|
|
|
pull: if-not-exists
|
2019-01-28 15:32:48 +00:00
|
|
|
image: redis:2.6
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: matrix-3
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
2019-07-17 15:09:47 +00:00
|
|
|
pull: if-not-exists
|
2019-01-28 15:32:48 +00:00
|
|
|
image: golang:1.9
|
|
|
|
commands:
|
|
|
|
- go test -v ./...
|
|
|
|
|
|
|
|
services:
|
|
|
|
- name: redis
|
2019-07-17 15:09:47 +00:00
|
|
|
pull: if-not-exists
|
2019-01-28 15:32:48 +00:00
|
|
|
image: redis:2.6
|
|
|
|
|
|
|
|
...
|