Skip to content

Commit

Permalink
Add matrix like pipeline for running tests via concourse.ci
Browse files Browse the repository at this point in the history
  • Loading branch information
LinuxBozo committed Dec 1, 2015
1 parent 37527e4 commit f82b55d
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .concourse.yml
@@ -0,0 +1,41 @@
---
resources:
- name: brij-spec
type: git
source:
uri: https://github.com/LinuxBozo/brij-spec.git
branch: master

jobs:
- name: test-0.10
plan:
- get: brij-spec
trigger: true
- task: unit
file: brij-spec/ci/node-0.10.yml
- name: test-0.12
plan:
- get: brij-spec
trigger: true
- task: unit
file: brij-spec/ci/node-0.12.yml
- name: test-4.x
plan:
- get: brij-spec
trigger: true
- task: unit
file: brij-spec/ci/node-4.x.yml
- name: test-latest
plan:
- get: brij-spec
trigger: true
- task: unit
file: brij-spec/ci/node-latest.yml

groups:
- name: tests
jobs:
- test-0.10
- test-0.12
- test-4.x
- test-latest

0 comments on commit f82b55d

Please sign in to comment.