From 8edd3e25a6f126484e276050a069649bdba0a7b2 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 12 May 2019 18:00:57 +0200 Subject: [PATCH] clone custom filter repo --- .drone.jsonnet | 2 ++ .drone.yml | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index d21b9eb..ea8bdb8 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -57,6 +57,8 @@ local PipelineDeployment = { }, commands: [ "/bin/bash /docker-entrypoint.sh", + "mkdir -p ./plugins/filters/", + "git clone https://gitea.rknet.org/ansible/custom_filters ./plugins/filters/", "molecule create --scenario-name ec2-centos-7", "molecule converge --scenario-name ec2-centos-7", "molecule verify --scenario-name ec2-centos-7", diff --git a/.drone.yml b/.drone.yml index 645daac..4cd476a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -56,8 +56,7 @@ steps: commands: - /bin/bash /docker-entrypoint.sh - mkdir -p ./plugins/filters/ - - wget -P ./plugins/filters/ https://gitea.rknet.org/xoxys/ansible-dc/raw/branch/master/custom/filter/wrap.py - - wget -P ./plugins/filters/ https://gitea.rknet.org/xoxys/ansible-dc/raw/branch/master/custom/filter/prefix.py + - git clone https://gitea.rknet.org/ansible/custom_filters ./plugins/filters/ - molecule create --scenario-name ec2-centos-7 - molecule converge --scenario-name ec2-centos-7 - molecule verify --scenario-name ec2-centos-7 @@ -116,6 +115,6 @@ depends_on: --- kind: signature -hmac: 827831324e9bbff40c494395e6b86057200c189dadb7dd4e51bb174786cf17ea +hmac: a392ab1f071b0e3b3382d2bf6ec96447443a470de2594ba7f0681750a4479054 ...