Some checks failed
ci / test (macos, macos-latest, nightly) (push) Waiting to run
ci / test (win-gnu, windows-latest, nightly-x86_64-gnu) (push) Waiting to run
ci / test (win-msvc, windows-latest, nightly) (push) Waiting to run
ci / test (winaarch64-msvc, windows-11-arm, nightly) (push) Waiting to run
ci / test (nightly, ubuntu-latest, nightly) (push) Successful in 11m40s
ci / test (beta, ubuntu-latest, beta) (push) Successful in 13m38s
ci / test (pinned, ubuntu-latest, 1.85.0) (push) Successful in 2m56s
ci / test (stable-aarch64, ubuntu-latest, stable, aarch64-unknown-linux-gnu) (push) Failing after 3s
ci / test (stable, ubuntu-latest, stable) (push) Successful in 6m49s
ci / test (stable-arm-gnueabihf, ubuntu-latest, stable, armv7-unknown-linux-gnueabihf) (push) Failing after 7m40s
ci / test (stable-arm-musleabi, ubuntu-latest, stable, armv7-unknown-linux-musleabi) (push) Failing after 3m24s
ci / test (stable-arm-musleabihf, ubuntu-latest, stable, armv7-unknown-linux-musleabihf) (push) Failing after 2m17s
ci / test (stable-powerpc64, ubuntu-latest, stable, powerpc64-unknown-linux-gnu) (push) Failing after 59s
ci / test (stable-riscv64, ubuntu-latest, stable, riscv64gc-unknown-linux-gnu) (push) Failing after 1m15s
ci / test (stable-s390x, ubuntu-latest, stable, s390x-unknown-linux-gnu) (push) Failing after 48s
ci / test (stable-x86, ubuntu-latest, stable, i686-unknown-linux-gnu) (push) Failing after 46s
ci / wasm (push) Successful in 50s
ci / rustfmt (push) Successful in 1m32s
ci / docs (push) Successful in 51s
ci / Compile Fuzz Test Targets (push) Successful in 1m37s
ci / test (stable-musl, ubuntu-latest, stable, x86_64-unknown-linux-musl) (push) Failing after 3h2m58s
* tests: fix cmd_exists for QEMU environments QEMU user-mode has a bug where posix_spawn returns success even when the command doesn't exist. The child exits with 127, but the parent thinks it succeeded. Change cmd_exists to check if the command actually ran successfully (exit code 0), not just if spawn returned Ok. This fixes compression tests on riscv64 and other QEMU-emulated architectures. Ref https://github.com/rust-lang/rust/issues/90825 * tests: remove riscv64 skip for compression tests Remove the cfg guards that disabled lz4, brotli, and zstd tests on riscv64. These now work with the QEMU fix.