From 0e60936ad3afc6fbdc9dffc9dfe23e4a052d221d Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Fri, 27 Aug 2021 11:03:40 -0400 Subject: [PATCH] Restore coverage (#2684) * Update coverage workflow * Remove cache layer, up timeout to 60 minutes anyway --- .github/workflows/coverage.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index a2792eb9..7c640451 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,7 +14,7 @@ jobs: coverage: name: Coverage (+nightly) # The large timeout is to accommodate nightly builds - timeout-minutes: 45 + timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v2.3.4 @@ -28,15 +28,8 @@ jobs: profile: minimal components: llvm-tools-preview - - uses: Swatinem/rust-cache@v1 - - - name: Install rustfilt symbol demangler - run: | - cargo install rustfilt - - name: Install cargo-llvm-cov cargo command - run: | - cargo install cargo-llvm-cov --version ^0.1.0-alpha.4 + run: cargo install cargo-llvm-cov - name: Generate code coverage env: @@ -45,4 +38,4 @@ jobs: run: cargo llvm-cov --lcov > lcov.info - name: Upload coverage report to Codecov - uses: codecov/codecov-action@v1.5.2 + uses: codecov/codecov-action@v2.0.3