ansible-sshd/.travis.yml

43 lines
1.7 KiB
YAML
Raw Normal View History

2015-01-12 22:01:08 +01:00
---
os: linux
dist: focal
language: python
2015-01-12 22:01:08 +01:00
2016-02-18 14:42:50 +01:00
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
2016-02-18 14:42:50 +01:00
2015-01-12 22:01:08 +01:00
before_install:
- sudo -H pip3 install ansible
2015-01-12 22:01:08 +01:00
install:
# Add ansible.cfg to pick up roles path.
- "{ echo '[defaults]'; echo 'roles_path = ../'; echo 'deprecation_warnings=False'; } >> ansible.cfg"
2015-01-12 22:12:32 +01:00
2015-01-12 22:01:08 +01:00
script:
# Test 0: Check the roles syntax.
2020-09-17 14:48:41 +02:00
- "ANSIBLE_FORCE_COLOR=1 ansible-playbook -i tests/inventory tests/test_default.yml --syntax-check"
2015-01-12 22:01:08 +01:00
# Test 1a: Run the role
2020-09-17 14:48:41 +02:00
- "ANSIBLE_FORCE_COLOR=1 ansible-playbook -i tests/inventory tests/test_default.yml --connection=local --become -v"
2015-01-12 22:01:08 +01:00
# Test 1b: Run the role through include
- "ANSIBLE_FORCE_COLOR=1 ansible-playbook -i tests/inventory tests/test_default_include.yml --connection=local --become -v"
# Test 2: Run the role/playbook again, checking to make sure it's idempotent.
2015-01-12 22:12:32 +01:00
- >
2020-09-17 14:48:41 +02:00
ansible-playbook -i tests/inventory tests/test_default.yml --connection=local --become | grep -q 'changed=0.*failed=0'
2015-01-12 22:12:32 +01:00
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
# Test 3: Check we can set arbitrary configuration options
- >
ANSIBLE_FORCE_COLOR=1 ansible-playbook -i tests/inventory tests/test_set_common.yml --connection=local --become -v
&& (echo 'Common variables test: pass' && exit 0)
|| (echo 'Common variables test: fail' && exit 1)
# Test 4: Check if we set uncommon or unsupported configuration option, it will not fail hard
- >
ANSIBLE_FORCE_COLOR=1 ansible-playbook -i tests/inventory tests/test_set_uncommon.yml --connection=local --become -v
&& (echo 'Uncommon configuration test: pass' && exit 0)
|| (echo 'Uncommon configuration test: fail' && exit 1)