From c918e0a28fbd3ae1ebebf68544fb6ac4a2358991 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Sun, 11 Oct 2020 10:49:25 -0700 Subject: [PATCH] short-term fix of coverage check in CI by removing caching --- .github/workflows/coverage.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 53c0383b44a..12b3b5db44c 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -15,25 +15,7 @@ jobs: steps: - uses: actions/checkout@v2 - ## Cache steps - - - name: Cache cargo registry - uses: actions/cache@v1 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.toml') }} - - - name: Cache cargo index - uses: actions/cache@v1 - with: - path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.toml') }} - - - name: Cache cargo build - uses: actions/cache@v1 - with: - path: target - key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }} + # TODO(#315) Re-include caching that also includes the Rust version in the cache key ## Coverage steps