From b8adac4c8bc8baa3a062d868fe72c7d06c1fa91d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 9 Jan 2019 19:57:36 +0100 Subject: [PATCH] add drone config --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b39e47d --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +pipeline: + ansible-latest: + image: python:2.7-slim + pull: True + command: + - pip install ansible ansible-later -q + - git ls-files *[^LICENSE,.md] | xargs ansible-later + group: test + + ansible-master: + image: python:2.7-slim + pull: True + command: + - pip install ansible ansible-later -q + - git ls-files *[^LICENSE,.md] | xargs ansible-later + group: test