Test using docker in travis
This commit is contained in:
parent
d7a2501b0d
commit
a02b0aa2ec
38
.travis.yml
38
.travis.yml
|
@ -1,13 +1,29 @@
|
||||||
---
|
---
|
||||||
language: python
|
services: docker
|
||||||
python: "2.7"
|
|
||||||
before_install:
|
env:
|
||||||
- sudo apt-get update -qq
|
- distro: ubuntu1604
|
||||||
- sudo apt-get install -qq python-apt python-pycurl
|
- distro: debian9
|
||||||
install:
|
- distro: debian8
|
||||||
- pip install ansible
|
|
||||||
script:
|
script:
|
||||||
- echo localhost > inventory
|
# Configure test script so we can run extra tests after playbook is run
|
||||||
- export ANSIBLE_ROLES_PATH="../"
|
- export container_id=$(date +%s)
|
||||||
- ansible-playbook -i inventory --syntax-check mstmp.yml
|
- export cleanup=false
|
||||||
- ansible-playbook -i inventory --connection=local --sudo -vvvv mstmp.yml
|
|
||||||
|
# Download test shim.
|
||||||
|
- wget -O ${PWD}/tests/test.sh https://gist.githubusercontent.com/geerlingguy/73ef1e5ee45d8694570f334be385e181/raw/
|
||||||
|
- chmod +x ${PWD}/tests/test.sh
|
||||||
|
|
||||||
|
# Run tests.
|
||||||
|
- ${PWD}/tests/test.sh
|
||||||
|
|
||||||
|
# Setup test site.
|
||||||
|
- 'docker exec ${container_id} mkdir -p /var/www/test'
|
||||||
|
- 'docker exec ${container_id} bash -c "echo Success >| /var/www/test/index.html"'
|
||||||
|
|
||||||
|
# Make sure virtualhost exists.
|
||||||
|
- 'docker exec --tty ${container_id} env TERM=xterm curl http://localhost/ | grep "Success"'
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
||||||
|
|
13
.travis.yml.old
Normal file
13
.travis.yml.old
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
language: python
|
||||||
|
python: "2.7"
|
||||||
|
before_install:
|
||||||
|
- sudo apt-get update -qq
|
||||||
|
- sudo apt-get install -qq python-apt python-pycurl
|
||||||
|
install:
|
||||||
|
- pip install ansible
|
||||||
|
script:
|
||||||
|
- echo localhost > inventory
|
||||||
|
- export ANSIBLE_ROLES_PATH="../"
|
||||||
|
- ansible-playbook -i inventory --syntax-check mstmp.yml
|
||||||
|
- ansible-playbook -i inventory --connection=local --sudo -vvvv mstmp.yml
|
11
tests/test.yml
Normal file
11
tests/test.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
- hosts: all
|
||||||
|
|
||||||
|
pre_tasks:
|
||||||
|
- name: Update apt cache.
|
||||||
|
apt: update_cache=yes cache_valid_time=600
|
||||||
|
when: ansible_os_family == 'Debian'
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- role_under_test
|
Loading…
Reference in a new issue