Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ fi
if [ "${NO_STD:-}" = "1" ]; then
echo "nothing to do for no_std"
else
run="cargo test --manifest-path testcrate/Cargo.toml --no-fail-fast --target $target"
run="cargo test --no-fail-fast --target $target"
$run
$run --release
$run --features c
Expand All @@ -38,8 +38,7 @@ fi

if [ "${TEST_VERBATIM:-}" = "1" ]; then
verb_path=$(cmd.exe //C echo \\\\?\\%cd%\\testcrate\\target2)
cargo build --manifest-path testcrate/Cargo.toml \
--target "$target" --target-dir "$verb_path" --features c
cargo build --target "$target" --target-dir "$verb_path" --features c
fi

declare -a rlib_paths
Expand Down
Loading