From 449c347b9d87baf8c27d0337408da9858311fccb Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 10 Jan 2019 23:42:37 +0100 Subject: [PATCH] add drone config --- .drone.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6543d45 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,18 @@ +pipeline: + ansible-latest: + image: python:2.7 + pull: True + commands: + - pip install ansible ansible-later -q + - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy + - git ls-files *[^LICENSE,.md] | xargs ansible-later -c ~/policy/config.ini + group: test + + ansible-master: + image: python:2.7 + pull: True + commands: + - pip install ansible ansible-later -q + - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy + - git ls-files *[^LICENSE,.md] | xargs ansible-later -c ~/policy/config.ini + group: test