From 07c71885001831cb79ad2928f37d18fa106bda1c Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 12 Jan 2019 14:22:00 +0100 Subject: [PATCH] switch to new drone syntax --- .drone.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..289d224 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +--- +kind: pipeline +name: default + +steps: + - name: ansible-latest + image: python:2.7 + pull: always + 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 + depends_on: [ clone ] + + - name: ansible-master + image: python:2.7 + pull: always + 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 + depends_on: [ clone ]