xoxys.nginx/.drone.yml

111 lines
2.2 KiB
YAML
Raw Normal View History

2019-05-12 00:46:48 +02:00
#---
#kind: pipeline
#name: linting
#
#platform:
# os: linux
# arch: amd64
#
#steps:
#- name: ansible-latest
# pull: always
# image: python:3.7
# commands:
# - pip install ansible ansible-later~=0.2.0 -qq
# - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
# - ansible-later -c ~/policy/config.yml
# environment:
# PY_COLORS: 1
# depends_on:
# - clone
#
#- name: ansible-master
# pull: always
# image: python:3.7
# commands:
# - "pip install git+https://github.com/ansible/ansible.git@devel ansible-later~=0.2.0 -qq"
# - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy
# - ansible-later -c ~/policy/config.yml
# environment:
# PY_COLORS: 1
# depends_on:
# - clone
#
#trigger:
# ref:
# - refs/heads/master
# - "refs/tags/**"
# - "refs/pull/**"
---
kind: pipeline
name: deployment
platform:
os: linux
arch: amd64
workspace:
base: /drone/src
path: xoxys.nginx
steps:
- name: molecule
pull: always
2019-05-12 00:41:53 +02:00
image: xoxys/molecule:ec2-linux-amd64
commands:
2019-05-12 00:41:53 +02:00
- molecule create --scenario-name ec2-centos-7
- molecule converge --scenario-name ec2-centos-7
- molecule verify --scenario-name ec2-centos-7
- molecule destroy --scenario-name ec2-centos-7
environment:
2019-05-12 00:58:22 +02:00
AWS_ACCESS_KEY_ID:
from_secret: ec2_access_key
2019-05-12 00:41:53 +02:00
EC2_REGION: eu-central-1
2019-05-12 00:51:43 +02:00
AWS_SECRET_ACCESS_KEY:
from_secret: ec2_security_token
2019-05-12 00:46:48 +02:00
MOLECULE_DEBUG: True
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
PY_COLORS: 1
trigger:
ref:
- refs/heads/master
- "refs/tags/**"
2019-05-12 00:47:24 +02:00
#depends_on:
#- linting
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: matrix
image: plugins/matrix
settings:
homeserver: https://matrix.rknet.org
password:
from_secret: matrix_password
roomid: MtidqQXWWAtQcByBhH:rknet.org
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:
- deployment
...