-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (48 loc) · 2.6 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
# We need sudo for some of the Docker commands.
sudo: required
env:
# - distro: centos7
# init: /usr/lib/systemd/systemd
# run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
# - distro: centos6
# init: /sbin/init
# run_opts: ""
# - distro: fedora24
# init: /usr/lib/systemd/systemd
# run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
# - distro: ubuntu1604
# init: /lib/systemd/systemd
# run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
# - distro: ubuntu1404
# init: /sbin/init
# run_opts: ""
- distro: debian8
init: /lib/systemd/systemd
run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
# Tell Travis to start Docker when it brings up an environment.
services:
- docker
before_install:
# Pull container from Docker Hub.
- 'docker pull geerlingguy/docker-${distro}-ansible:latest'
script:
# Create a random file to store the container ID.
- container_id=$(mktemp)
# Run container detached, with our role mounted inside.
- 'docker run --detach --volume="${PWD}":/etc/ansible/roles/role_under_test:ro ${run_opts} geerlingguy/docker-${distro}-ansible:latest "${init}" > "${container_id}"'
# Ansible syntax check.
- 'docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml --syntax-check'
# Test the Ansible role.
- 'docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml --diff'
# # Test role idempotence.
# - idempotence=$(mktemp)
# - docker exec "$(cat ${container_id})" ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml | tee -a ${idempotence}
# - >
# tail ${idempotence}
# | grep -q 'changed=0.*failed=0'
# && (echo 'Idempotence test: pass' && exit 0)
# || (echo 'Idempotence test: fail' && exit 1)
notifications:
slack:
secure: HJPvDJMHwKN8VUr00jr5xcbdjPILJSD8qRe84MYiv2yBrizYpXt1qMfTib8cYW0LvsB1Oq/CqaQ4DKJsNqnjRwMUWd+fAehBuGUzOeOa/gfcTnWSZscq0aVEcvb8p7rUAXWvVT1hwPE0k+wIgRhlDqwwBhTqZ+M8JkjepcXG+zY8/lMZFox7BmeD6kcFBpgkLHya/BnPtEje/aTQBnxhpNvddR4o0+LWmoL81OP23s2PJS7BYiLK5HLG20/91ThhjrCWX9KJGu1kkgwfX4IUWP/AaRKqOUW7UvsCskg/8hU/+x+kBFi3iYhIKgR08NBLBp/iEOQ94QjB2Gyjz2smqeAqlnkCPCr9AVXVkfiogQVWB7ATidC5EBkQ8LFvpTkHSpbYWMKjNqw9e4g7lVsanR9WFbC+6XvfF1tH2qNLy1mb6oIHJbZdrgD5558kxpDKFH1mFIs9oVuPAYjOAHy982dW40oh8bX0ualkRVs7G4vhbDVqLjEaY5b4PG2NBJScblokILLDoD9yMmXILyXOUMf/0J3Jroak7A+9i3jzyWIE2gmyFcJfSFJP9h7t+T+vNnDK4qeNtoq3nYZ/lh8nIZUu9qu+bXFklHJhWBc6PMZL8JszkUJcJxw8HDBvOUBD4WGyxGqVjb6w9Bfq5iPiOZv4ii1N3ztUUAJpFJhnhcE=