Laurent Arnoud
8 years ago
No account linked to committer's email address
|
@@ -1,7 +1,12 @@
|
1
|
1
|
language: python
|
2
|
2
|
python: "2.7"
|
|
3
|
+cache:
|
|
4
|
+ directories:
|
|
5
|
+ - $HOME/.cache/pip
|
3
|
6
|
install:
|
4
|
|
- - pip install ansible ansible-lint
|
|
7
|
+ # TODO: use requirements.txt when ansible updated to >= 1.9
|
|
8
|
+ - pip install ansible
|
|
9
|
+ - pip install -r test-requirements.txt
|
5
|
10
|
script:
|
6
|
11
|
- ansible-playbook --syntax-check -i hosts site.yml
|
7
|
12
|
- ansible-lint site.yml
|
|
@@ -1,2 +1 @@
|
1
|
1
|
ansible==1.6.6
|
2
|
|
-
|
|
@@ -0,0 +1 @@
|
|
1
|
+ansible-lint==2.3.6
|