From 5cf0aa3fa4e0557b786a46a9e9a18bf057983097 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Sun, 5 Oct 2025 11:46:21 +0200 Subject: [PATCH] try to fix ci __rust_probestack issue --- .github/workflows/codecov.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 0e8238f..3790914 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -24,13 +24,13 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: stable + toolchain: nightly override: true components: llvm-tools-preview - uses: actions-rs/cargo@v1 continue-on-error: true - run: | - cargo install grcov; + cargo install --force grcov; cargo test --all-features; cargo test discv5_echo -- --ignored; cargo test default_echo -- --ignored;