diff --git a/.buildkite/test_description.json b/.buildkite/test_description.json index 6029da7..d4beb38 100644 --- a/.buildkite/test_description.json +++ b/.buildkite/test_description.json @@ -44,6 +44,29 @@ "privileged": true } }, + { + "test_name": "unittests-gnu-release", + "command": "cargo test --release --all-features --workspace", + "platform": [ + "x86_64", + "aarch64", + "riscv64" + ], + "docker_plugin": { + "privileged": true + } + }, + { + "test_name": "unittests-musl-release", + "command": "cargo test --release --all-features --workspace --target {target_platform}-unknown-linux-musl", + "platform": [ + "x86_64", + "aarch64" + ], + "docker_plugin": { + "privileged": true + } + }, { "test_name": "clippy", "command": "cargo clippy --workspace --bins --examples --benches --all-features --all-targets -- -D warnings -D clippy::undocumented_unsafe_blocks",