pitrix/.drone.yml

33 lines
1.0 KiB
YAML
Raw Permalink Normal View History

2019-06-06 04:30:15 +00:00
kind: pipeline
name: default
steps:
- name: PlatformIO
image: python:2.7
2019-06-06 04:30:15 +00:00
commands:
- pip install -U platformio
2019-06-06 04:30:15 +00:00
- cp include/config.sample.h include/config.h
- PLATFORMIO_BUILD_FLAGS="-DCONFIG_USABLE -DDEBUG -DMQTT_ENABLE -DMQTT_REPORT_METRICS" pio run
- PLATFORMIO_BUILD_FLAGS="-DCONFIG_USABLE -UDEBUG -UMQTT_ENABLE -UMQTT_REPORT_METRICS" pio run
2019-06-07 04:42:06 +00:00
- name: Notify
image: plugins/matrix
settings:
homeserver: https://matrix.schle.nz
roomid: "!eBdjaXDkatJWoHYdTj:schle.nz"
username:
from_secret: matrix_username
password:
from_secret: matrix_password
template: >
2019-06-11 17:44:53 +00:00
Built <code>{{truncate build.commit 7}}</code>: <code>{{build.message}}</code><br>
<br>
2019-06-07 04:42:06 +00:00
{{#success build.status}}
Build {{build.number}} succeeded. Good job!
{{else}}
2019-06-11 17:44:53 +00:00
<strong>Build {{build.number}} failed.</strong> See {{build.link}} for more information.
2019-06-07 04:42:06 +00:00
{{/success}}
2019-06-07 04:42:06 +00:00
when:
status: [success, failure]