xoxys.network/.drone.yml

108 lines
1.8 KiB
YAML
Raw Normal View History

2019-01-12 13:48:45 +01:00
---
kind: pipeline
2019-06-21 08:06:43 +02:00
name: linting
platform:
os: linux
arch: amd64
2019-01-12 13:48:45 +01:00
steps:
2019-10-18 10:43:50 +02:00
- name: ansible-later
image: xoxys/ansible-later:latest
2019-06-21 08:06:43 +02:00
commands:
2019-11-22 23:59:05 +01:00
- ansible-later
2019-06-21 08:06:43 +02:00
2019-10-18 10:43:50 +02:00
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
- refs/pull/**
2019-10-18 10:43:50 +02:00
---
kind: pipeline
name: documentation
platform:
os: linux
arch: amd64
steps:
- name: ansible-doctor
image: xoxys/ansible-doctor:latest
2019-06-21 08:06:43 +02:00
environment:
2019-10-18 10:43:50 +02:00
ANSIBLE_DOCTOR_CUSTOM_HEADER: HEADER.md
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
- name: push-to-repo
image: plugins/git-action:latest
settings:
actions:
- commit
- push
2019-11-22 23:59:05 +01:00
author_email: shipper@rknet.org
2019-10-18 10:43:50 +02:00
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.network
when:
ref:
- refs/heads/master
2019-06-21 08:06:43 +02:00
trigger:
ref:
- refs/heads/master
2019-11-22 23:59:05 +01:00
- refs/tags/**
- refs/pull/**
2019-06-21 08:06:43 +02:00
2019-10-18 10:43:50 +02:00
depends_on:
2019-10-18 10:48:44 +02:00
- linting
2019-10-18 10:43:50 +02:00
2019-06-21 08:06:43 +02:00
---
kind: pipeline
2019-10-18 10:43:50 +02:00
name: notification
2019-06-21 08:06:43 +02:00
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: matrix
image: plugins/matrix
settings:
2019-10-18 10:43:50 +02:00
homeserver:
from_secret: matrix_homeserver
2019-06-21 08:06:43 +02:00
password:
from_secret: matrix_password
2019-10-18 10:43:50 +02:00
roomid:
from_secret: matrix_roomid
2019-06-21 08:06:43 +02: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
2019-11-22 23:59:05 +01:00
- refs/tags/**
2019-06-21 08:06:43 +02:00
status:
- success
- failure
depends_on:
2019-10-18 10:43:50 +02:00
- documentation
2019-06-21 08:06:43 +02:00
---
kind: signature
2019-11-22 23:59:05 +01:00
hmac: 72d3c10da1efd8631afbee4d89c895232bbbb5c5eb1cc56126d9ee326dcceb69
2019-06-21 08:06:43 +02:00
...