mirror of
https://github.com/lightsoutgames/bevy_full_throttle
synced 2024-11-21 20:15:57 +00:00
Simplify dependencies.
This commit is contained in:
parent
548b161bdc
commit
1f017d8abc
47
.drone.yml
Normal file
47
.drone.yml
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
environment:
|
||||||
|
DEPENDENCIES: libudev-dev
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: test
|
||||||
|
image: rust:bullseye
|
||||||
|
pull: always
|
||||||
|
commands:
|
||||||
|
- apt-get update -qq
|
||||||
|
- apt-get install -qqy $DEPENDENCIES
|
||||||
|
- rustup component add clippy rustfmt
|
||||||
|
- cargo fmt --check
|
||||||
|
- cargo test
|
||||||
|
- cargo clippy
|
||||||
|
- name: release
|
||||||
|
image: rust:bullseye
|
||||||
|
pull: always
|
||||||
|
commands:
|
||||||
|
- apt-get update -qq
|
||||||
|
- apt-get install -qqy $DEPENDENCIES
|
||||||
|
- cargo publish
|
||||||
|
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}}
|
Loading…
Reference in New Issue
Block a user