mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-04 18:50:39 +00:00
62 lines
708 B
Plaintext
62 lines
708 B
Plaintext
---
|
|
kind: pipeline
|
|
name: matrix-1
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
pull: if-not-exists
|
|
image: golang:1.11
|
|
commands:
|
|
- go test -v ./...
|
|
|
|
services:
|
|
- name: redis
|
|
pull: if-not-exists
|
|
image: redis:2.6
|
|
|
|
---
|
|
kind: pipeline
|
|
name: matrix-2
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
pull: if-not-exists
|
|
image: golang:1.10
|
|
commands:
|
|
- go test -v ./...
|
|
|
|
services:
|
|
- name: redis
|
|
pull: if-not-exists
|
|
image: redis:2.6
|
|
|
|
---
|
|
kind: pipeline
|
|
name: matrix-3
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: test
|
|
pull: if-not-exists
|
|
image: golang:1.9
|
|
commands:
|
|
- go test -v ./...
|
|
|
|
services:
|
|
- name: redis
|
|
pull: if-not-exists
|
|
image: redis:2.6
|
|
|
|
...
|