Skip to content

Commit 3d763ae

Browse files
committed
Disable test for --no-default-features on rumprun
1 parent 6fc015f commit 3d763ae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/run.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,9 @@ if [ "$TARGET" = "x86_64-unknown-linux-gnux32" ]; then
8686
opt="--release"
8787
fi
8888

89-
cargo test $opt --no-default-features --manifest-path libc-test/Cargo.toml --target $TARGET
89+
# 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
9094
exec cargo test $opt --manifest-path libc-test/Cargo.toml --target $TARGET

0 commit comments

Comments
 (0)