Skip to content

Commit de69e01

Browse files
committed
Add Debian Stretch support, some test performance tweaks
1 parent f4306f4 commit de69e01

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ matrix:
1313
fast_finish: true
1414
env:
1515
- LXC_DISTRO=debian LXC_RELEASE=jessie
16+
- LXC_DISTRO=debian LXC_RELEASE=stretch
1617
- LXC_DISTRO=ubuntu LXC_RELEASE=xenial
1718
- LXC_DISTRO=centos LXC_RELEASE=7
1819
before_cache:
@@ -27,7 +28,7 @@ install:
2728
- sudo apt-get install -y expect-dev
2829
- pip install ansible
2930
- ansible --version
30-
- printf '[defaults]\nroles_path=../\ncallback_whitelist=profile_tasks' >ansible.cfg
31+
- printf '[defaults]\nroles_path=../\ncallback_whitelist=profile_tasks\nforks=10\npipelining=True' >ansible.cfg
3132
- ansible-galaxy install lae.travis-lxc
3233
- ansible-playbook -vvv tests/install.yml -i tests/inventory
3334
script:

vars/debian-9.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
netbox_packages:
3+
- libxml2-dev
4+
- libxslt1-dev
5+
- libffi-dev
6+
- graphviz
7+
- libpq-dev
8+
- libssl-dev
9+
netbox_python2_packages:
10+
- python2.7
11+
- python-dev
12+
- python-pip
13+
netbox_python2_binary: /usr/bin/python2.7
14+
netbox_pip2_binary: /usr/bin/pip2
15+
netbox_python3_packages:
16+
- python3.5
17+
- python3.5-dev
18+
- python3-pip
19+
netbox_python3_binary: /usr/bin/python3.5
20+
netbox_pip3_binary: /usr/bin/pip3
21+
netbox_ldap_packages:
22+
- libldap2-dev
23+
- libsasl2-dev
24+
- libssl-dev

0 commit comments

Comments
 (0)