Skip to content

Commit 0892a82

Browse files
committed
fix
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 2a3ae8f commit 0892a82

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/rust-instrumented.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ jobs:
6868
- name: Rust Tests
6969
if: ${{ matrix.suite == 'tests' }}
7070
run: |
71-
cargo nextest run --cargo-profile ci --locked --workspace --all-features --no-fail-fast
71+
cargo nextest run --locked --workspace --all-features --no-fail-fast
7272
- name: Generate coverage report
7373
run: |
7474
RUST_SYSROOT="$(rustc --print sysroot)"
7575
RUST_HOST="$(rustc --print host-tuple)"
7676
LLVM_TOOLS_BIN="${RUST_SYSROOT}/lib/rustlib/${RUST_HOST}/bin"
77-
grcov . --binary-path target/ci/ -s . -t lcov --llvm --ignore-not-existing \
77+
grcov . --binary-path target/debug/ -s . -t lcov --llvm --ignore-not-existing \
7878
--llvm-path "${LLVM_TOOLS_BIN}" \
7979
--threads $(nproc) \
8080
--ignore '../*' --ignore '/*' --ignore 'fuzz/*' --ignore 'vortex-bench/*' \

0 commit comments

Comments
 (0)