2022-11-04 10:25:46 +01:00
|
|
|
#!/bin/env /bin/sh
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Debug-build with features: minimal"
|
2022-11-04 10:25:46 +01:00
|
|
|
cargo build --no-default-features --features= &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Debug-build with features: logging" &&
|
2022-11-04 10:25:46 +01:00
|
|
|
cargo build --no-default-features --features=logging &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Debug-build with features: render" &&
|
2022-11-04 10:25:46 +01:00
|
|
|
cargo build --no-default-features --features=render &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Debug-build with features: logging render" &&
|
2022-11-08 21:46:32 +01:00
|
|
|
cargo build --no-default-features --features="logging,render" &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Release-build with features: minimal"
|
2022-11-04 10:25:46 +01:00
|
|
|
cargo build --release --no-default-features --features= &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Release-build with features: logging" &&
|
2022-11-04 10:25:46 +01:00
|
|
|
cargo build --release --no-default-features --features=logging &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Release-build with features: render" &&
|
2022-11-04 10:25:46 +01:00
|
|
|
cargo build --release --no-default-features --features=render &&
|
2022-11-07 12:29:56 +01:00
|
|
|
echo "Release-build with features: logging render" &&
|
2022-11-08 21:46:32 +01:00
|
|
|
cargo build --release --no-default-features --features="logging,render" &&
|
2022-11-06 17:07:21 +01:00
|
|
|
echo "Done!"
|