CI: run test suite in Miri (#456)

This commit is contained in:
Ralf Jung
2020-12-29 22:54:48 +01:00
committed by GitHub
parent ed71a7beb3
commit 27a0f9ca6e
4 changed files with 24 additions and 3 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -e
MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)
echo "Installing latest nightly with Miri: $MIRI_NIGHTLY"
rustup set profile minimal
rustup default "$MIRI_NIGHTLY"
rustup component add miri
cargo miri test
cargo miri test --target mips64-unknown-linux-gnuabi64