2022-03-18 20:46:42 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: test
|
|
|
|
image: rust
|
|
|
|
commands:
|
|
|
|
- rustup component add clippy rustfmt
|
|
|
|
- cargo fmt --check
|
|
|
|
- cargo build --all
|
|
|
|
- cargo build --examples --all
|
|
|
|
- cargo test --verbose --all
|
|
|
|
- cargo clippy
|
|
|
|
- name: release
|
|
|
|
image: rust
|
|
|
|
commands:
|
|
|
|
- cargo publish
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
environment:
|
|
|
|
CARGO_REGISTRY_TOKEN:
|
|
|
|
from_secret: cargo_registry_token
|
|
|
|
- name: discord notification
|
|
|
|
image: appleboy/drone-discord
|
|
|
|
settings:
|
|
|
|
webhook_id:
|
|
|
|
from_secret: discord_webhook_id
|
|
|
|
webhook_token:
|
|
|
|
from_secret: discord_webhook_token
|
|
|
|
tts: true
|
|
|
|
message: >
|
|
|
|
{{#success build.status}}
|
|
|
|
{{repo.name}} build {{build.number}} succeeded. <{{build.link}}>
|
|
|
|
{{else}}
|
|
|
|
{{repo.name}} build {{build.number}} failed. <{{build.link}}>
|
|
|
|
{{/success}}
|
2022-03-18 21:22:00 +00:00
|
|
|
when:
|
|
|
|
status: [success, failure]
|