From c9345f05af0f5ae8087080a44e6669af0844ab5c Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Wed, 9 Nov 2016 09:49:56 -0600 Subject: [PATCH] Fixes #24: Add travis_wait to fix builds that take longer than 10 minutes. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c06c962..c130e5d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,7 @@ script: - "ansible-playbook main.yml --syntax-check" # Test the playbook. - - "ansible-playbook --extra-vars '{\"configure_sudoers\":\"false\"}' main.yml" + - "travis_wait 30 ansible-playbook --extra-vars '{\"configure_sudoers\":\"false\"}' main.yml" # Test the playbook's idempotence. - idempotence=$(mktemp)