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 e9ffdfa commit d90ca9eCopy full SHA for d90ca9e
scripts/rmc-regression.sh
@@ -28,6 +28,14 @@ check-cbmc-viewer-version.py --major 2 --minor 5
28
# Check codegen for the standard library
29
time "$SCRIPT_DIR"/std-lib-regression.sh
30
31
+# We rarely benefit from re-using build artifacts in the firecracker test,
32
+# and we often end up with incompatible leftover artifacts:
33
+# "error[E0514]: found crate `serde_derive` compiled by an incompatible version of rustc"
34
+# So if we're calling the full regression suite, wipe out old artifacts.
35
+if [ -d "$RMC_DIR/firecracker/build" ]; then
36
+ rm -rf "$RMC_DIR/firecracker/build"
37
+fi
38
+
39
# Check codegen of firecracker
40
time "$SCRIPT_DIR"/codegen-firecracker.sh
41
0 commit comments