mirror of
https://git.sr.ht/~spicywolf/k2spice
synced 2025-01-18 17:59:39 +00:00
27 lines
693 B
YAML
27 lines
693 B
YAML
image: debian/stable
|
|
environment:
|
|
RUSTFLAGS: -D warnings
|
|
sources:
|
|
- https://git.sr.ht/~spicywolf/k2spice
|
|
tasks:
|
|
- rustup: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y
|
|
source "$HOME/.cargo/env"
|
|
rustup toolchain install nightly --allow-downgrade --profile minimal --component clippy
|
|
- bld-dbg: |
|
|
cd k2spice
|
|
source "$HOME/.cargo/env"
|
|
cargo build
|
|
- bld-rel: |
|
|
cd k2spice
|
|
source "$HOME/.cargo/env"
|
|
cargo build --release
|
|
- test: |
|
|
cd k2spice
|
|
source "$HOME/.cargo/env"
|
|
cargo test
|
|
- clippy: |
|
|
cd k2spice
|
|
source "$HOME/.cargo/env"
|
|
cargo clippy
|