codecov try to fix __rust_probestack

This commit is contained in:
Ivan Folgueira Bande 2025-10-06 17:12:42 +02:00
parent c084a85354
commit a68b4fd518
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -16,21 +16,23 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: llvm-tools-preview
toolchain: nightly
override: true
- name: Install system deps
run: sudo apt-get update && sudo apt-get install -y build-essential clang lld
- name: Run tests
- name: Build with coverage
run: |
cargo build --all-features
cargo test --all-features
export RUSTFLAGS="-C instrument-coverage"
cargo clean
cargo build
cargo test
- name: Install grcov
run: cargo install grcov