2017-02-24 05:08:18 +01:00
|
|
|
---
|
|
|
|
services: docker
|
|
|
|
|
|
|
|
env:
|
|
|
|
- distro: centos7
|
|
|
|
- distro: ubuntu1604
|
2017-02-24 05:21:00 +01:00
|
|
|
- distro: debian8
|
2017-02-24 05:08:18 +01:00
|
|
|
|
|
|
|
script:
|
2017-04-02 05:48:28 +02:00
|
|
|
# Configure test script so we can run extra tests after playbook is run.
|
|
|
|
- export container_id=$(date +%s)
|
|
|
|
- export cleanup=false
|
2017-02-24 05:08:18 +01:00
|
|
|
|
2017-04-02 05:48:28 +02:00
|
|
|
# Download test shim.
|
|
|
|
- wget -O ${PWD}/tests/test.sh https://gist.githubusercontent.com/geerlingguy/73ef1e5ee45d8694570f334be385e181/raw/
|
|
|
|
- chmod +x ${PWD}/tests/test.sh
|
2017-02-24 05:08:18 +01:00
|
|
|
|
2017-04-02 05:48:28 +02:00
|
|
|
# Run tests.
|
|
|
|
- ${PWD}/tests/test.sh
|
2017-02-24 05:08:18 +01:00
|
|
|
|
2017-02-24 05:25:06 +01:00
|
|
|
# Test whether Docker is running correctly (Dockerception!).
|
2017-04-02 06:16:26 +02:00
|
|
|
- docker exec --tty ${container_id} docker run hello-world
|
2017-02-24 05:08:18 +01:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|