We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc015f commit 3d763aeCopy full SHA for 3d763ae
ci/run.sh
@@ -86,5 +86,9 @@ if [ "$TARGET" = "x86_64-unknown-linux-gnux32" ]; then
86
opt="--release"
87
fi
88
89
-cargo test $opt --no-default-features --manifest-path libc-test/Cargo.toml --target $TARGET
+# Building with --no-default-features is currently broken on rumprun because we
90
+# need cfg(target_vendor), which is currently unstable.
91
+if [ "$TARGET" != "x86_64-rumprun-netbsd" ]; then
92
+ cargo test $opt --no-default-features --manifest-path libc-test/Cargo.toml --target $TARGET
93
+fi
94
exec cargo test $opt --manifest-path libc-test/Cargo.toml --target $TARGET
0 commit comments