-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
489 lines (435 loc) · 11.7 KB
/
.travis.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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
<<<<<<< HEAD
sudo: false
language: ruby
rvm:
- 1.9.3
before_install: gem install bundler -v 1.16.1
=======
---
conditions: v1
dist: xenial
git:
depth: 200
cache:
bundler: true
pip: true
directories:
- $HOME/.cache/pre-commit
- $HOME/.pre-commit
- $HOME/.rvm
- $HOME/virtualenv/python$(python -c 'import platform; print(platform.python_version())')
- $HOME/Library/Caches/Homebrew
services:
- docker
language: python
.mixtures: # is not used by Travis CI, but helps avoid duplication
- &if-cron-or-manual-run-or-tagged
if: type IN (cron, api) OR tag IS present
- &py-27
python: "2.7"
- &py-36
python: "3.6"
- &py-37
python: "3.7"
- &reset-prerequisites
addons: {}
before_install:
- pip install tox-venv tox-tags
before_script: []
services: []
- &lint
<<: *py-37
<<: *reset-prerequisites
- &env-functional
TESTS_TYPE: functional
- &env-functional-shard_1
<<: *env-functional
PYTEST_ADDOPTS: >-
'-m shard_1_of_3'
- &env-functional-shard_2
<<: *env-functional
PYTEST_ADDOPTS: >-
'-m shard_2_of_3'
- &env-functional-shard_3
<<: *env-functional
PYTEST_ADDOPTS: >-
'-m shard_3_of_3'
jobs:
fast_finish: true
allow_failures:
- <<: *py-37
env:
ANSIBLE_VERSION: devel
TESTS_TYPE: unit
- <<: *py-37
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-37
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: devel
- <<: *py-37
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: devel
- <<: *py-36
env:
ANSIBLE_VERSION: devel
TESTS_TYPE: unit
- <<: *py-36
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-36
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: devel
- <<: *py-36
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: devel
- <<: *py-27
env:
ANSIBLE_VERSION: devel
TESTS_TYPE: unit
- <<: *py-27
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-27
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-27
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: devel
include:
- <<: *lint
name: linting the code
env:
TOXENV: lint
- <<: *lint
name: checking the code style
env:
TOXENV: format-check
- <<: *lint
name: checking the docs build
env:
TOXENV: doc
- <<: *lint
name: checking the Python distribution package metadata consistency
if: repo == "ansible/molecule" AND type IN (cron, pull_request) # Only run if PR or cron
env:
TOXENV: metadata-validation
- <<: *py-37
env:
ANSIBLE_VERSION: "27"
TESTS_TYPE: unit
name: unit tests, Ansible 2.7, Python 3.7
- <<: *py-37
env:
ANSIBLE_VERSION: "26"
TESTS_TYPE: unit
name: unit tests, Ansible 2.6, Python 3.7
- <<: *py-37
env:
ANSIBLE_VERSION: "25"
TESTS_TYPE: unit
name: unit tests, Ansible 2.5, Python 3.7
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
ANSIBLE_VERSION: "27"
TESTS_TYPE: unit
name: unit tests, Ansible 2.7, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
ANSIBLE_VERSION: "26"
TESTS_TYPE: unit
name: unit tests, Ansible 2.6, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
ANSIBLE_VERSION: "25"
TESTS_TYPE: unit
name: unit tests, Ansible 2.5, Python 3.6
- <<: *py-27
env:
ANSIBLE_VERSION: "27"
TESTS_TYPE: unit
name: unit tests, Ansible 2.7, Python 2.7
- <<: *py-27
env:
ANSIBLE_VERSION: "26"
TESTS_TYPE: unit
name: unit tests, Ansible 2.6, Python 2.7
- <<: *py-27
env:
ANSIBLE_VERSION: "25"
TESTS_TYPE: unit
name: unit tests, Ansible 2.5, Python 2.7
- <<: *py-37
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "27"
name: functional tests shard 1/3, Ansible 2.7, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "27"
name: functional tests shard 2/3, Ansible 2.7, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "27"
name: functional tests shard 3/3, Ansible 2.7, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "26"
name: functional tests shard 1/3, Ansible 2.6, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "26"
name: functional tests shard 2/3, Ansible 2.6, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "26"
name: functional tests shard 3/3, Ansible 2.6, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "25"
name: functional tests shard 1/3, Ansible 2.5, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "25"
name: functional tests shard 2/3, Ansible 2.5, Python 3.7
- <<: *py-37
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "25"
name: functional tests shard 3/3, Ansible 2.5, Python 3.7
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "27"
name: functional tests shard 1/3, Ansible 2.7, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "27"
name: functional tests shard 2/3, Ansible 2.7, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "27"
name: functional tests shard 3/3, Ansible 2.7, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "26"
name: functional tests shard 1/3, Ansible 2.6, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "26"
name: functional tests shard 2/3, Ansible 2.6, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "26"
name: functional tests shard 3/3, Ansible 2.6, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "25"
name: functional tests shard 1/3, Ansible 2.5, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "25"
name: functional tests shard 2/3, Ansible 2.5, Python 3.6
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "25"
name: functional tests shard 3/3, Ansible 2.5, Python 3.6
- <<: *py-27
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "27"
name: functional tests shard 1/3, Ansible 2.7, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "27"
name: functional tests shard 2/3, Ansible 2.7, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "27"
name: functional tests shard 3/3, Ansible 2.7, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "26"
name: functional tests shard 1/3, Ansible 2.6, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "26"
name: functional tests shard 2/3, Ansible 2.6, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "26"
name: functional tests shard 3/3, Ansible 2.6, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: "25"
name: functional tests shard 1/3, Ansible 2.5, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: "25"
name: functional tests shard 2/3, Ansible 2.5, Python 2.7
- <<: *py-27
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: "25"
name: functional tests shard 3/3, Ansible 2.5, Python 2.7
# The following set of jobs is running tests against devel branch
# of ansible/ansible:
- <<: *py-37
<<: *if-cron-or-manual-run-or-tagged
env:
ANSIBLE_VERSION: devel
TESTS_TYPE: unit
- <<: *py-37
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-37
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: devel
- <<: *py-37
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: devel
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
ANSIBLE_VERSION: devel
TESTS_TYPE: unit
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_2
ANSIBLE_VERSION: devel
- <<: *py-36
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: devel
- <<: *py-27
<<: *if-cron-or-manual-run-or-tagged
env:
ANSIBLE_VERSION: devel
TESTS_TYPE: unit
- <<: *py-27
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-27
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_1
ANSIBLE_VERSION: devel
- <<: *py-27
<<: *if-cron-or-manual-run-or-tagged
env:
<<: *env-functional-shard_3
ANSIBLE_VERSION: devel
- &deploy-job
<<: *py-37
<<: *reset-prerequisites
stage: Deploy
name: Publishing current Git tagged version of dist to PyPI
if: repo == "ansible/molecule" AND tag IS present
env:
TOXENV: metadata-validation,build-dists
before_deploy:
- echo > setup.py
deploy: &deploy-step
provider: pypi
user: ansible-molecule
password:
secure: >
HPBkDwncLYLEzxirPfNB88GYFWZ/wA1jMgCd4wT7SgKQlIyRSCT6KXMfoOUVMH/uwaLggoURaGtmD/qnrfXj+bG15nBCCOaIZdXzODln/PwDFAYT8ZspzRPzQOfncdk4WTsVbwpiGgpdm+TxGGBz8yedvVXiTwmwLCGC0FsAE8Wp8krNH1Kwqp3OaZeePakIbEj0UXgCTnAol3ZgVWWy+6bfDBb/aLiGXjsAIb7sY6HzwvQUr43xFO7tReaGO23mGwgIy/tNstXarwxezlw6FlGe5KJGvE/a4yAPuWg9kuJt5MqwbCJzhP38SeH4Gc6x0o6jPT/+NbvLV1ck1Qbz5gCYmXlOzucDP+P5t8E3g+zJbNbCR00k1BpG3MIEzrHeyp/hCdDYnGB3TVnlj+L4Y/yoUdCq9FJI8xHLbj/fMe5vxBMMsvDbt2JJReavi3WB2pv2nHtivkKj/Kow4FRm+Kp3WH4x5NlZDjV5gsUbwPcN1kIpb09sPZE2wYugvCTOiExt7mdd0JMMcgxuR1jGgGxqRARQeqjz14VVNsrVIIrMh8JX8u7Rl9sqmU4UuLGTxnq2cwyBmYzJ0gmDgN3TvQ96n9D2sP0YQj35v7RY5vsdYsfLucLdTfTajP9OL4Bw+ogXMJrArIq+j+7uJyTFqNdAN+Y6nX7WV0W6rp8aA1I=
distributions: dists
skip-cleanup: true
on:
all_branches: true
- <<: *deploy-job
if: >- # publish only pushes to master and tags; only if upstream
repo == "ansible/molecule" AND
(
(
type == push AND
branch == "master"
) OR
tag IS present
)
name: Publishing current (unstable) Git revision of dist to Test PyPI
deploy:
<<: *deploy-step
server: https://test.pypi.org/legacy/
env:
global:
TOXENV_TMPL: "'ansible${ANSIBLE_VERSION}-${TESTS_TYPE}'"
addons:
apt:
packages:
- lxc
- lxc-dev
- lxd
- lxd-client
before_install:
- export TOXENV=$(echo $TOXENV_TMPL | envsubst)
- pip install tox-venv tox-tags
install:
- tox --notest | tee ~/.tox-venv-install.log
- >
! grep 'ERROR: ' ~/.tox-venv-install.log .tox/*/log/*.log
before_script:
- gem install inspec rubocop
script:
- tox
>>>>>>> 0bcce3509ee0740f20724d18369f4c7eb6751b3d