2019-01-12 12:52:07 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-06-10 13:05:20 +00:00
|
|
|
name: linting
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-10-18 11:18:43 +00:00
|
|
|
- name: ansible-later
|
|
|
|
image: xoxys/ansible-later:latest
|
2019-06-10 13:05:20 +00:00
|
|
|
commands:
|
|
|
|
- git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
|
|
|
|
- ansible-later -c ~/policy/config.yml
|
|
|
|
environment:
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
- "refs/pull/**"
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: deployment
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2019-10-18 11:18:43 +00:00
|
|
|
concurrency:
|
|
|
|
limit: 1
|
|
|
|
|
2019-06-10 13:05:20 +00:00
|
|
|
workspace:
|
|
|
|
base: /drone/src
|
|
|
|
path: xoxys.postgres
|
|
|
|
|
|
|
|
steps:
|
2019-10-18 11:18:43 +00:00
|
|
|
- name: ansible-molecule
|
|
|
|
image: xoxys/molecule:do-linux-amd64
|
2019-06-10 13:05:20 +00:00
|
|
|
commands:
|
|
|
|
- /bin/bash /docker-entrypoint.sh
|
2019-10-18 11:18:43 +00:00
|
|
|
- molecule test -s default
|
2019-06-10 13:05:20 +00:00
|
|
|
environment:
|
2019-10-18 11:18:43 +00:00
|
|
|
DO_API_KEY:
|
|
|
|
from_secret: do_api_key
|
2019-06-10 13:05:20 +00:00
|
|
|
MOLECULE_CUSTOM_FILTERS_REPO: https://gitea.rknet.org/ansible/custom_filters
|
|
|
|
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
|
|
|
|
PY_COLORS: 1
|
2019-10-18 11:18:43 +00:00
|
|
|
USER: root
|
2019-06-10 13:05:20 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- linting
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-10-18 11:18:43 +00:00
|
|
|
name: documentation
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: ansible-doctor
|
|
|
|
image: xoxys/ansible-doctor:latest
|
|
|
|
environment:
|
|
|
|
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
|
|
|
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
|
|
|
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
|
|
|
|
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
|
|
|
|
PY_COLORS: 1
|
|
|
|
|
|
|
|
- name: push-to-repo
|
|
|
|
image: plugins/git-action:latest
|
|
|
|
settings:
|
|
|
|
actions:
|
|
|
|
- commit
|
|
|
|
- push
|
|
|
|
author_email: "shipper@rknet.org"
|
|
|
|
author_name: DroneShipper
|
|
|
|
branch: master
|
|
|
|
message: "[SKIP CI] update readme"
|
|
|
|
netrc_machine: gitea.rknet.org
|
|
|
|
netrc_password:
|
|
|
|
from_secret: gitea_token
|
|
|
|
netrc_username:
|
|
|
|
from_secret: gitea_username
|
|
|
|
remote: https://gitea.rknet.org/ansible/xoxys.postgres
|
|
|
|
when:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
- "refs/pull/**"
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- deployment
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: notification
|
2019-06-10 13:05:20 +00:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
clone:
|
|
|
|
disable: true
|
2019-01-12 12:52:07 +00:00
|
|
|
|
|
|
|
steps:
|
2019-06-10 13:05:20 +00:00
|
|
|
- name: matrix
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
2019-10-18 11:18:43 +00:00
|
|
|
homeserver:
|
|
|
|
from_secret: matrix_homeserver
|
2019-06-10 13:05:20 +00:00
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|
2019-10-18 11:18:43 +00:00
|
|
|
roomid:
|
|
|
|
from_secret: matrix_roomid
|
2019-06-10 13:05:20 +00:00
|
|
|
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
|
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
ref:
|
|
|
|
- refs/heads/master
|
|
|
|
- "refs/tags/**"
|
|
|
|
status:
|
|
|
|
- success
|
|
|
|
- failure
|
|
|
|
|
|
|
|
depends_on:
|
2019-10-18 11:18:43 +00:00
|
|
|
- documentation
|
2019-06-10 13:05:20 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2019-10-18 11:18:43 +00:00
|
|
|
hmac: b56b09ba81029f39039ed704b5c752aaa22931a3c92e3916e7091a624b0b1670
|
2019-06-10 13:05:20 +00:00
|
|
|
|
|
|
|
...
|