diff options
| author | Ellie Hermaszewska <ellieh@nvidia.com> | 2024-04-12 15:50:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-12 15:50:54 +0900 |
| commit | cc3e97985d879a36ed8d797d8a1cc3bf6010d9fb (patch) | |
| tree | 10ac87105afcf4b5053957a4a193da39a01b1374 | |
| parent | 1afb9cb43d3ab3d55ac5125ef8b5e6cd482f3f85 (diff) | |
Disable sccache timestamps (#3937)
The timestamped caches were filling up the 10GB max cache size, removing the timestamps allows older ones to be overwritten instead
| -rw-r--r-- | .github/actions/common-setup/action.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml index 60c81b007..a1323ddbd 100644 --- a/.github/actions/common-setup/action.yml +++ b/.github/actions/common-setup/action.yml @@ -21,8 +21,9 @@ runs: - name: Set up sccache uses: hendrikmuhs/ccache-action@v1.2 with: - key: ${{github.job}}-${{inputs.os}}-${{inputs.compiler}}-${{inputs.platform}}-${{inputs.config}} + key: ${{inputs.os}}-${{inputs.compiler}}-${{inputs.platform}}-${{inputs.config}} variant: sccache + append-timestamp: false - shell: bash run: | # Set up system dependencies |
