mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
2a6d7545ca
* Update sysinfo to 0.33 * Update thiserror to v2.0 * Update Alpine Dockerfile to 1.75 (MSRV) * Update governor to 0.8 * Update quick-xml to 0.37 * Update rodio to 0.20.1 * Update zerocopy to 0.8.13 * Update alpine image to 3.19 --------- Signed-off-by: yubiuser <github@yubiuser.dev>
31 lines
No EOL
914 B
Bash
Executable file
31 lines
No EOL
914 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
clean() {
|
|
# some shells will call EXIT after the INT signal
|
|
# causing EXIT trap to be executed, so we trap EXIT after INT
|
|
trap '' EXIT
|
|
|
|
cargo clean
|
|
}
|
|
|
|
trap clean INT QUIT TERM EXIT
|
|
|
|
# this script runs the tests and checks that also run as part of the`test.yml` github action workflow
|
|
cargo clean
|
|
cargo fmt --all -- --check
|
|
cargo clippy -p librespot-core --no-default-features
|
|
cargo clippy -p librespot-core
|
|
|
|
cargo hack clippy --each-feature -p librespot-discovery
|
|
cargo hack clippy --each-feature -p librespot-playback
|
|
cargo hack clippy --each-feature
|
|
|
|
cargo build --workspace --examples
|
|
cargo test --workspace
|
|
cargo check -p librespot-core --no-default-features
|
|
cargo check -p librespot-core
|
|
cargo hack check --no-dev-deps --each-feature -p librespot-discovery
|
|
cargo hack check --no-dev-deps --each-feature -p librespot-playback
|
|
cargo hack check --no-dev-deps --each-feature |