Skip to content

Commit

Permalink
Change engine for Tarpaulin
Browse files Browse the repository at this point in the history
Tarpaulin uses Ptrace as its backend by default, but also supports an
LLVM backend. We're opting into that backend to hopefully resolve a
build failure that recently started appearing.
  • Loading branch information
jdno committed Mar 4, 2024
1 parent 22b879a commit b5fcd39
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,13 @@ jobs:
- name: Run tests with test coverage
run: |
cargo +nightly tarpaulin \
--verbose \
--all-features \
--timeout 120 \
--target-dir target/tarpaulin-target/ \
--engine llvm \
--out xml \
--skip-clean \
--out xml
--target-dir target/tarpaulin-target/ \
--timeout 120 \
--verbose
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit b5fcd39

Please sign in to comment.