From eeda44e62b2ace6ab42ec918267f5807f9a2f2ad Mon Sep 17 00:00:00 2001 From: changyuanl Date: Sun, 23 Aug 2026 12:25:25 -0700 Subject: [PATCH] Revert "ci: cache cargo llvm-cov build artifacts" This reverts commit 0691d1e0bb20b33224e8eb596bdd9978d35c5b09. `cargo llvm-cov clean` followed by `cargo llvm-cov test --no-clean` is equivalent to `cargo llvm-cov test` without `--no-clean`. Signed-off-by: Changyuan Lyu --- .github/workflows/rust.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index da754d41..ec4786d4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -75,9 +75,8 @@ jobs: env: RUST_LOG: "trace" run: | - cargo +nightly llvm-cov clean --workspace cargo +nightly llvm-cov test --target ${{ matrix.target.name }} --branch \ - --no-clean --workspace --ignore-filename-regex '.*_test.rs$' \ + --workspace --ignore-filename-regex '.*_test.rs$' \ --lcov --output-path lcov-${{ matrix.target.name }}.info - name: Clippy run: cargo clippy --all-targets --target ${{ matrix.target.name }} -- -D warnings