xoxys.vaultwarden_docker/.drone.yml

146 lines
2.4 KiB
YAML
Raw Normal View History

2020-01-17 22:34:37 +01:00
---
kind: pipeline
name: linting
platform:
os: linux
arch: amd64
steps:
- name: ansible-later
image: xoxys/ansible-later:latest
commands:
- ansible-later
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
---
kind: pipeline
2020-01-20 23:44:46 +01:00
name: testing-centos7
2020-01-17 22:34:37 +01:00
platform:
os: linux
arch: amd64
concurrency:
limit: 1
workspace:
base: /drone/src
path: xoxys.bitwarden_rs
steps:
- name: ansible-molecule
image: xoxys/molecule:latest
commands:
2020-01-20 23:44:46 +01:00
- molecule test -scentos7
2020-01-17 22:34:37 +01:00
environment:
DO_API_KEY:
from_secret: do_api_key
MOLECULE_CUSTOM_FILTERS_REPO: https://gitea.rknet.org/ansible/custom_filters
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
USER: root
trigger:
ref:
- refs/heads/master
- refs/tags/**
depends_on:
- linting
---
kind: pipeline
name: documentation
platform:
os: linux
arch: amd64
steps:
2020-01-20 23:44:46 +01:00
- name: generate
2020-01-17 22:34:37 +01:00
image: xoxys/ansible-doctor:latest
environment:
ANSIBLE_DOCTOR_EXCLUDE_FILES: molecule/
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true
ANSIBLE_DOCTOR_LOG_LEVEL: INFO
2020-01-20 23:44:46 +01:00
ANSIBLE_DOCTOR_OUTPUT_DIR: _docs/
ANSIBLE_DOCTOR_TEMPLATE: hugo-book
2020-01-17 22:34:37 +01:00
2020-01-20 23:44:46 +01:00
- name: publish
image: plugins/gh-pages:latest
2020-01-17 22:34:37 +01:00
settings:
2020-01-20 23:44:46 +01:00
pages_directory: _docs/
password:
from_secret: github_token
target_branch: docs
username:
from_secret: github_username
when:
ref:
- refs/heads/master
- name: trigger
image: plugins/downstream
settings:
fork: true
repositories:
- xoxys/ansible-galaxy
server: https://drone.rknet.org
token:
from_secret: drone_token
2020-01-17 22:34:37 +01:00
when:
ref:
- refs/heads/master
trigger:
ref:
- refs/heads/master
- refs/tags/**
- refs/pull/**
depends_on:
2020-01-20 23:44:46 +01:00
- testing-centos7
2020-01-17 22:34:37 +01:00
---
kind: pipeline
name: notification
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: matrix
image: plugins/matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
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:
- documentation
...