We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 265ad5c commit b715378Copy full SHA for b715378
.travis.yml
@@ -2,8 +2,10 @@
2
language: python
3
python: "2.7"
4
5
-# Use the new container infrastructure
6
-sudo: false
+sudo: required
+
7
+services:
8
+ - docker
9
10
# Install ansible
11
addons:
@@ -19,8 +21,11 @@ install:
19
21
- ansible --version
20
22
23
script:
- # Basic role syntax check
- - ansible-playbook tests/test.yml -i tests/inventory --syntax-check
24
+ - docker run --name xenial -d codeyourinfra/python3:xenial
25
+ - docker run --name bionic -d codeyourinfra/python3:bionic
26
+ - ansible-playbook tests/test.yml -i tests/inventory
27
+ - docker stop xenial bionic
28
+ - docker rm xenial bionic
29
30
notifications:
31
webhooks: https://galaxy.ansible.com/api/v1/notifications/
0 commit comments