-
Notifications
You must be signed in to change notification settings - Fork 2
/
.drone.yml
68 lines (59 loc) · 1.11 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
kind: pipeline
name: molecule-ci
workspace:
base: /drone
path: src/${DRONE_REPO}
steps:
- name: ansible-25
image: atosatto/python-dind
environment:
ANSIBLE: 2.5
volumes:
- name: dockersock
path: /var/run
commands:
- pip install tox
- tox
- name: ansible-26
image: atosatto/python-dind
environment:
ANSIBLE: 2.6
volumes:
- name: dockersock
path: /var/run
commands:
- pip install tox
- tox
- name: ansible-27
image: atosatto/python-dind
environment:
ANSIBLE: 2.7
volumes:
- name: dockersock
path: /var/run
commands:
- pip install tox
- tox
- name: notify
image: plugins/webhook
settings:
urls: https://galaxy.ansible.com/api/v1/notifications/
debug: true
when:
branch: master
event: push
depends_on:
- ansible-25
- ansible-26
- ansible-27
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}