sqlite-clone/.drone.yml
kjuulh 381ca5f7e3
All checks were successful
continuous-integration/drone/push Build is passing
CI test
2022-03-27 18:15:10 +02:00

27 lines
887 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build && test
image: rust:1
commands:
- cargo build --verbose --all
- cargo test --verbose --all
-
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token:
from_secret: telegram_token
to: 2129601481
message: >
Status: <b{{#success build.status}}> OK {{ else }} FAILURE {{/success}}</b>
Commit: <a href="https://github.com/{{ repo.owner }}/{{ repo.name }}/commit/{{ build.commit }}|{{ truncate build.commit 8 }}">{{ build.commit }}|{{ truncate build.commit 8 }}</a
Branch: <a https://github.com/{{ repo.owner }}/{{ repo.name }}/commits/{{ build.branch }}|{{ build.branch }}></a>
Author: {{ build.author }}
Build: <{{ build.link }}| Drone Build {{ build.number }} >