test: compile the facade's parallel tests, and build them in CI

parallel_integration.rs declared `_sequential` and used `sequential`
under the parallel feature, which nothing in CI enabled for the facade.
ci-test.sh now lints and tests the facade with parallel on.

Co-Authored-By: Claude Opus 5.5 (1M context) <[email protected]>
This commit is contained in:
osobh
2026-09-26 01:38:38 -05:00
co-authored by Claude Opus 5.5
parent 2b68791f6a
commit c85a8222cc
2 changed files with 11 additions and 4 deletions
@@ -292,7 +292,8 @@ mod parallel_tests {
}
// Sequential decompression
let _sequential: Vec<Vec<u8>> = chunk_infos
#[cfg_attr(not(feature = "parallel"), allow(unused_variables))]
let sequential: Vec<Vec<u8>> = chunk_infos
.iter()
.map(|ci| {
let addr = ci.address as usize;