diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2023-05-15 22:14:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 02:14:49 +0000 |
commit | 983b4617fe9668d03f6c58de56fadd1cbc296e64 (patch) | |
tree | d4070e17edb7614eb39db6de4f8a75a026e824bb | |
parent | 4b8187f8bc8265ca5aba76994ca8963b845c0705 (diff) | |
download | cryptography-983b4617fe9668d03f6c58de56fadd1cbc296e64.tar.gz |
Cache slightly less in rust-coverage jobs (#8934)
* Cache slightly less in rust-coverage jobs
* Trigger CI to test cache
-rw-r--r-- | .github/actions/cache/action.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 15 |
2 files changed, 1 insertions, 16 deletions
diff --git a/.github/actions/cache/action.yml b/.github/actions/cache/action.yml index 37b9cc81b..47414c0f4 100644 --- a/.github/actions/cache/action.yml +++ b/.github/actions/cache/action.yml @@ -43,7 +43,7 @@ runs: ~/.cargo/registry/cache/ src/rust/target/ ${{ inputs.additional-paths }} - key: cargo-pip-${{ runner.os }}-${{ runner.arch }}-${{ inputs.key }}-3-${{ hashFiles('**/Cargo.lock', '**/*.rs') }}-${{ steps.rust-version.version }} + key: cargo-pip-${{ runner.os }}-${{ runner.arch }}-${{ inputs.key }}-4-${{ hashFiles('**/Cargo.lock', '**/*.rs') }}-${{ steps.rust-version.version }} - name: Size of cache items run: | du -sh ~/.cargo/registry/index/ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53fe7c385..af52faacc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -278,24 +278,9 @@ jobs: key: coverage additional-paths: | ~/.cargo/bin/cargo-cov - ~/.cargo/bin/cargo-nm - ~/.cargo/bin/cargo-objcopy - ~/.cargo/bin/cargo-objdump ~/.cargo/bin/cargo-profdata - ~/.cargo/bin/cargo-readobj - ~/.cargo/bin/cargo-size - ~/.cargo/bin/cargo-strip - ~/.cargo/bin/rust-ar ~/.cargo/bin/rust-cov - ~/.cargo/bin/rust-ld - ~/.cargo/bin/rust-lld - ~/.cargo/bin/rust-nm - ~/.cargo/bin/rust-objcopy - ~/.cargo/bin/rust-objdump ~/.cargo/bin/rust-profdata - ~/.cargo/bin/rust-readobj - ~/.cargo/bin/rust-size - ~/.cargo/bin/rust-strip - name: Setup python uses: actions/setup-python@v4.6.0 with: |