diff --git a/.drone.yml b/.drone.yml index 9cccf11..078c9d4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,8 +23,8 @@ steps: - push - pull_request - - name: test-debian7 - image: lerentis/ansible:debian-7 + - name: test-debian10 + image: lerentis/ansible:debian-10 commands: - ansible-galaxy collection install community.general - ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check @@ -128,6 +128,15 @@ steps: depends_on: - "prepare_workspace" + - name: test-centos8 + image: lerentis/ansible:centos-8 + commands: + - ansible-galaxy collection install community.general + - ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check + - ansible-playbook -i tests/inventory tests/test-playbook.yml -e "ci_run=yes" --skip-tags "daemon" + depends_on: + - "prepare_workspace" + --- kind: pipeline type: kubernetes diff --git a/README.md b/README.md index 1caf596..4a890b7 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,11 @@ Verify This role will only be used to verify some assumptions and drifts on a host. +Dependencies +------------ + +ansible-galaxy collection install community.general + Example Playbook ---------------- diff --git a/meta/main.yml b/meta/main.yml index 81af844..2fa3da9 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -9,12 +9,12 @@ galaxy_info: platforms: - name: CentOS versions: - - 7 - - 9 + - 8 - name: Debian versions: - 10 - name: Ubuntu version: + - 16.04 - 18.04 - 20.04 \ No newline at end of file