forked from andrewrothstein/ansible-kubernetes-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
34 lines (30 loc) · 743 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
machine:
services:
- docker
dependencies:
pre:
- sudo -H pip install --upgrade pip
- sudo -H pip install circleci-helpers ansible-galaxy-local-deps dcb==0.0.11
- ansible-galaxy-local-deps-write
test:
override:
- ? |
circle-matrix <<"EHD"
env:
- OS=centos_7
- OS=fedora_24
- OS=fedora_25
- OS=ubuntu_trusty
- OS=ubuntu_xenial
script:
- >-
dcb
--upstreamgroup andrewrothstein
--upstreamapp docker-ansible-role
--write ${OS}
--build ${OS}
--push ${OS}
EHD
:
parallel: true