aboutsummaryrefslogtreecommitdiffhomepage
path: root/circle.yml
blob: 60cbe2880c140586363993863d915439f6b7726b (plain) (blame)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
machine:
  services:
    - docker

dependencies:
  override:
    - docker info
    - docker version

    - docker build  -t ansible_xenial           ubuntu16.04
    - docker build  -t ansible_trusty           ubuntu14.04
    - docker build  -t ansible_precise          ubuntu12.04
    - docker build  -t ansible_jessie           debian8
    - docker build  -t ansible_wheezy           debian7
    - docker build  -t ansible_centos7          centos7
    - docker build  -t ansible_centos6          centos6
    - docker build  -t ansible_alpine3          alpine3

    - docker build  -t ansible_xenial_onbuild   ubuntu16.04-onbuild
    - docker build  -t ansible_trusty_onbuild   ubuntu14.04-onbuild
    - docker build  -t ansible_precise_onbuild  ubuntu12.04-onbuild
    - docker build  -t ansible_jessie_onbuild   debian8-onbuild
    - docker build  -t ansible_wheezy_onbuild   debian7-onbuild
    - docker build  -t ansible_centos7_onbuild  centos7-onbuild
    - docker build  -t ansible_centos6_onbuild  centos6-onbuild
    - docker build  -t ansible_alpine3_onbuild  alpine3-onbuild


    - docker build  -t ansible_1.9_trusty           1.9-ubuntu14.04
    - docker build  -t ansible_1.9_precise          1.9-ubuntu12.04
    - docker build  -t ansible_1.9_jessie           1.9-debian8
    - docker build  -t ansible_1.9_wheezy           1.9-debian7
    - docker build  -t ansible_1.9_centos7          1.9-centos7
    - docker build  -t ansible_1.9_centos6          1.9-centos6
    - docker build  -t ansible_1.9_alpine3          1.9-alpine3

    - docker build  -t ansible_1.9_trusty_onbuild   1.9-ubuntu14.04-onbuild
    - docker build  -t ansible_1.9_precise_onbuild  1.9-ubuntu12.04-onbuild
    - docker build  -t ansible_1.9_jessie_onbuild   1.9-debian8-onbuild
    - docker build  -t ansible_1.9_wheezy_onbuild   1.9-debian7-onbuild
    - docker build  -t ansible_1.9_centos7_onbuild  1.9-centos7-onbuild
    - docker build  -t ansible_1.9_centos6_onbuild  1.9-centos6-onbuild
    - docker build  -t ansible_1.9_alpine3_onbuild  1.9-alpine3-onbuild


    - docker build  -t ansible_master_xenial           master-ubuntu16.04
    - docker build  -t ansible_master_trusty           master-ubuntu14.04
    - docker build  -t ansible_master_precise          master-ubuntu12.04
    - docker build  -t ansible_master_jessie           master-debian8
    - docker build  -t ansible_master_wheezy           master-debian7
    - docker build  -t ansible_master_centos7          master-centos7
    - docker build  -t ansible_master_centos6          master-centos6

    - docker build  -t ansible_master_xenial_onbuild   master-ubuntu16.04-onbuild
    - docker build  -t ansible_master_trusty_onbuild   master-ubuntu14.04-onbuild
    - docker build  -t ansible_master_precise_onbuild  master-ubuntu12.04-onbuild
    - docker build  -t ansible_master_jessie_onbuild   master-debian8-onbuild
    - docker build  -t ansible_master_wheezy_onbuild   master-debian7-onbuild
    - docker build  -t ansible_master_centos7_onbuild  master-centos7-onbuild
    - docker build  -t ansible_master_centos6_onbuild  master-centos6-onbuild

test:
  override:
    - docker run -i ansible_xenial           > result-ubuntu16.04
    - docker run -i ansible_trusty           > result-ubuntu14.04
    - docker run -i ansible_precise          > result-ubuntu12.04
    - docker run -i ansible_jessie           > result-debian8
    - docker run -i ansible_wheezy           > result-debian7
    - docker run -i ansible_centos7          > result-centos7
    - docker run -i ansible_centos6          > result-centos6
    - docker run -i ansible_alpine3          > result-alpine3
    - docker run -i ansible_xenial_onbuild   > result-ubuntu16.04-onbuild
    - docker run -i ansible_trusty_onbuild   > result-ubuntu14.04-onbuild
    - docker run -i ansible_precise_onbuild  > result-ubuntu12.04-onbuild
    - docker run -i ansible_jessie_onbuild   > result-debian8-onbuild
    - docker run -i ansible_wheezy_onbuild   > result-debian7-onbuild
    - docker run -i ansible_centos7_onbuild  > result-centos7-onbuild
    - docker run -i ansible_centos6_onbuild  > result-centos6-onbuild
    - docker run -i ansible_alpine3_onbuild  > result-alpine3-onbuild


    - docker run -i ansible_1.9_trusty           > result-1.9-ubuntu14.04
    - docker run -i ansible_1.9_precise          > result-1.9-ubuntu12.04
    - docker run -i ansible_1.9_jessie           > result-1.9-debian8
    - docker run -i ansible_1.9_wheezy           > result-1.9-debian7
    - docker run -i ansible_1.9_centos7          > result-1.9-centos7
    - docker run -i ansible_1.9_centos6          > result-1.9-centos6
    - docker run -i ansible_1.9_alpine3          > result-1.9-alpine3
    - docker run -i ansible_1.9_trusty_onbuild   > result-1.9-ubuntu14.04-onbuild
    - docker run -i ansible_1.9_precise_onbuild  > result-1.9-ubuntu12.04-onbuild
    - docker run -i ansible_1.9_jessie_onbuild   > result-1.9-debian8-onbuild
    - docker run -i ansible_1.9_wheezy_onbuild   > result-1.9-debian7-onbuild
    - docker run -i ansible_1.9_centos7_onbuild  > result-1.9-centos7-onbuild
    - docker run -i ansible_1.9_centos6_onbuild  > result-1.9-centos6-onbuild
    - docker run -i ansible_1.9_alpine3_onbuild  > result-1.9-alpine3-onbuild


    - docker run -i ansible_master_xenial           > result-master-ubuntu16.04
    - docker run -i ansible_master_trusty           > result-master-ubuntu14.04
    - docker run -i ansible_master_precise          > result-master-ubuntu12.04
    - docker run -i ansible_master_jessie           > result-master-debian8
    - docker run -i ansible_master_wheezy           > result-master-debian7
    - docker run -i ansible_master_centos7          > result-master-centos7
    - docker run -i ansible_master_centos6          > result-master-centos6
    - docker run -i ansible_master_xenial_onbuild   > result-master-ubuntu16.04-onbuild
    - docker run -i ansible_master_trusty_onbuild   > result-master-ubuntu14.04-onbuild
    - docker run -i ansible_master_precise_onbuild  > result-master-ubuntu12.04-onbuild
    - docker run -i ansible_master_jessie_onbuild   > result-master-debian8-onbuild
    - docker run -i ansible_master_wheezy_onbuild   > result-master-debian7-onbuild
    - docker run -i ansible_master_centos7_onbuild  > result-master-centos7-onbuild
    - docker run -i ansible_master_centos6_onbuild  > result-master-centos6-onbuild



    - echo "==> Validating the test results..."
    - sh -c "[ -s result-ubuntu16.04         ]"
    - sh -c "[ -s result-ubuntu14.04         ]"
    - sh -c "[ -s result-ubuntu12.04         ]"
    - sh -c "[ -s result-debian8             ]"
    - sh -c "[ -s result-debian7             ]"
    - sh -c "[ -s result-centos7             ]"
    - sh -c "[ -s result-centos6             ]"
    - sh -c "[ -s result-alpine3             ]"
    - sh -c "[ -s result-ubuntu16.04-onbuild ]"
    - sh -c "[ -s result-ubuntu14.04-onbuild ]"
    - sh -c "[ -s result-ubuntu12.04-onbuild ]"
    - sh -c "[ -s result-debian8-onbuild     ]"
    - sh -c "[ -s result-debian7-onbuild     ]"
    - sh -c "[ -s result-centos7-onbuild     ]"
    - sh -c "[ -s result-centos6-onbuild     ]"
    - sh -c "[ -s result-alpine3-onbuild     ]"

    - sh -c "[ -s result-1.9-ubuntu14.04         ]"
    - sh -c "[ -s result-1.9-ubuntu12.04         ]"
    - sh -c "[ -s result-1.9-debian8             ]"
    - sh -c "[ -s result-1.9-debian7             ]"
    - sh -c "[ -s result-1.9-centos7             ]"
    - sh -c "[ -s result-1.9-centos6             ]"
    - sh -c "[ -s result-1.9-alpine3             ]"
    - sh -c "[ -s result-1.9-ubuntu14.04-onbuild ]"
    - sh -c "[ -s result-1.9-ubuntu12.04-onbuild ]"
    - sh -c "[ -s result-1.9-debian8-onbuild     ]"
    - sh -c "[ -s result-1.9-debian7-onbuild     ]"
    - sh -c "[ -s result-1.9-centos7-onbuild     ]"
    - sh -c "[ -s result-1.9-centos6-onbuild     ]"
    - sh -c "[ -s result-1.9-alpine3-onbuild     ]"

    - sh -c "[ -s result-master-ubuntu16.04         ]"
    - sh -c "[ -s result-master-ubuntu14.04         ]"
    - sh -c "[ -s result-master-ubuntu12.04         ]"
    - sh -c "[ -s result-master-debian8             ]"
    - sh -c "[ -s result-master-debian7             ]"
    - sh -c "[ -s result-master-centos7             ]"
    - sh -c "[ -s result-master-centos6             ]"
    - sh -c "[ -s result-master-ubuntu16.04-onbuild ]"
    - sh -c "[ -s result-master-ubuntu14.04-onbuild ]"
    - sh -c "[ -s result-master-ubuntu12.04-onbuild ]"
    - sh -c "[ -s result-master-debian8-onbuild     ]"
    - sh -c "[ -s result-master-debian7-onbuild     ]"
    - sh -c "[ -s result-master-centos7-onbuild     ]"
    - sh -c "[ -s result-master-centos6-onbuild     ]"