mirror of
https://github.com/lightsoutgames/bevy_tts.git
synced 2024-11-09 22:55:56 +00:00
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: test
|
|
image: rust
|
|
commands:
|
|
- rustup component add clippy rustfmt
|
|
- apt-get update -qq
|
|
- apt-get install -qqy llvm-dev libclang-dev clang libspeechd-dev pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
|
|
- cargo fmt --check
|
|
- cargo test --no-default-features --features=speech_dispatcher_0_10
|
|
- cargo clippy --no-default-features --features=speech_dispatcher_0_10
|
|
- name: release
|
|
image: rust
|
|
commands:
|
|
- apt-get update -qq
|
|
- apt-get install -qqy llvm-dev libclang-dev clang libspeechd-dev pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
|
|
- cargo publish --no-verify
|
|
when:
|
|
ref:
|
|
- refs/tags/v*
|
|
environment:
|
|
CARGO_REGISTRY_TOKEN:
|
|
from_secret: cargo_registry_token
|
|
- name: discord notification
|
|
image: appleboy/drone-discord
|
|
when:
|
|
status: [success, failure]
|
|
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}}
|