-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
55 lines (50 loc) · 1.27 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
---
language: python
sudo: false
services:
- docker
python: 2.7
git:
submodules: false
matrix:
include:
- env:
Lint_and_license_test: True
install:
- pip install mkdocs yamllint ansible-lint
script:
- bash test/yamllinting.sh
- bash test/ansiblelinting.sh
- bash test/mkdocs.sh
- bash test/licensetest.sh
- env:
test_hostname: ubuntu-16.04
privileged: True
install:
- pip install ansible==2.4.0
script:
- bash -c 'source test/test_playbook.sh $test_hostname $privileged'
- env:
test_hostname: ubuntu-16.04
privileged: False
install:
- pip install ansible==2.4.0
script:
- bash -c 'source test/test_playbook.sh $test_hostname $privileged'
- env:
test_hostname: cluster-test
privileged: False
install:
- pip install ansible==2.4.0
script:
- bash -c 'source test/test_playbook.sh $test_hostname $privileged'
- env:
test_hostname: cluster-test2
privileged: False
install:
- pip install ansible==2.4.0
script:
- bash -c 'source test/test_playbook.sh $test_hostname $privileged'
# Keep inboxes nice and clean.
notifications:
email: false