update-system/.drone.yml

97 lines
2.7 KiB
YAML
Raw Normal View History

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
- 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
- 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
- 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:
2021-01-30 23:29:58 +00:00
- pacman -S python2 --noconfirm
2021-01-30 18:50:13 +00:00
- 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
- test-ubuntu16
- test-ubuntu18
- test-ubuntu20
2021-01-30 18:50:13 +00:00
- test-arch
- test-centos7