We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b37cd3 commit 4613e3dCopy full SHA for 4613e3d
ci/ci.sh
@@ -63,7 +63,11 @@ function run_tests {
63
done
64
65
# Check that the benchmarks build and run, but without actually benchmarking.
66
- HYPERFINE="bash -c" ./miri bench
+ # But only do this on Linux; Windows is too cursed for this to work.
67
+ # (Somehow WSL is getting in the way, see <https://github.com/rust-lang/miri/pull/3402>.)
68
+ if [ "$HOST_TARGET" = x86_64-unknown-linux-gnu ]; then
69
+ HYPERFINE="bash -c" ./miri bench
70
+ fi
71
fi
72
73
## test-cargo-miri
0 commit comments