2021-01-30 18:50:13 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2021-01-30 19:00:45 +00:00
|
|
|
type: kubernetes
|
2021-01-30 18:50:13 +00:00
|
|
|
name: ansible-test
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
limit: 9
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: prepare_workspace
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- mkdir -p /drone/src/tests/update-system
|
|
|
|
- mv defaults /drone/src/tests/update-system/
|
|
|
|
- mv files /drone/src/tests/update-system/
|
|
|
|
- mv handlers /drone/src/tests/update-system/
|
|
|
|
- mv meta /drone/src/tests/update-system/
|
|
|
|
- mv tasks /drone/src/tests/update-system/
|
|
|
|
- mv vars /drone/src/tests/update-system/
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
- name: test-debian7
|
|
|
|
image: lerentis/ansible:debian-7
|
|
|
|
commands:
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
|
2021-01-30 19:21:27 +00:00
|
|
|
# replace with debian 9 when available. 8 is EOL
|
|
|
|
# - name: test-debian8
|
|
|
|
# image: lerentis/ansible:debian-8
|
|
|
|
# commands:
|
|
|
|
# - ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
# - ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
# depends_on:
|
|
|
|
# - prepare_workspace
|
2021-01-30 18:50:13 +00:00
|
|
|
|
2021-01-30 19:21:27 +00:00
|
|
|
- name: test-ubuntu16
|
|
|
|
image: lerentis/ansible:ubuntu-16.04
|
2021-01-30 18:50:13 +00:00
|
|
|
commands:
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
|
2021-01-30 19:21:27 +00:00
|
|
|
- name: test-ubuntu18
|
|
|
|
image: lerentis/ansible:ubuntu-18.04
|
2021-01-30 18:50:13 +00:00
|
|
|
commands:
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
|
2021-01-30 19:21:27 +00:00
|
|
|
- name: test-ubuntu20
|
|
|
|
image: lerentis/ansible:ubuntu-20.04
|
2021-01-30 18:50:13 +00:00
|
|
|
commands:
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
|
|
|
|
- name: test-arch
|
|
|
|
image: lerentis/ansible:arch
|
|
|
|
commands:
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
|
|
|
|
- name: test-centos7
|
|
|
|
image: lerentis/ansible:centos-7
|
|
|
|
commands:
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml --syntax-check
|
|
|
|
- ansible-playbook -i tests/inventory tests/test-playbook.yml
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
|
|
|
|
- name: notify
|
|
|
|
image: appleboy/drone-telegram
|
|
|
|
settings:
|
|
|
|
message: "Commit {{ commit.link }} ran with build {{ build.number }} and finished with status {{ build.status }}."
|
|
|
|
to: 14852963
|
|
|
|
token: 335668211:AAF-YgId7iI6ANBuZVy4uVOYYqA4R4uAaqY
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- failure
|
|
|
|
- success
|
|
|
|
depends_on:
|
|
|
|
- prepare_workspace
|
|
|
|
- test-debian7
|
2021-01-30 19:21:27 +00:00
|
|
|
# - test-debian9
|
2021-01-30 18:50:13 +00:00
|
|
|
- test-ubuntu16
|
|
|
|
- test-ubuntu18
|
2021-01-30 19:21:27 +00:00
|
|
|
- test-ubuntu20
|
2021-01-30 18:50:13 +00:00
|
|
|
- test-arch
|
|
|
|
- test-centos7
|