Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 0917c14

Browse files
committed
Update cache key for runner-et
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags:
1 parent 70efcca commit 0917c14

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/pull.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -905,13 +905,11 @@ jobs:
905905
- name: Load or install ET
906906
id: install-et
907907
uses: actions/cache@v4
908-
env:
909-
cache-key: et-build-${{runner.os}}-${{runner.arch}}-${{env.et-git-hash}}-${{ hashFiles('torchchat/utils/scripts/install_et.sh') }}
910908
with:
911-
path: ./et-build
912-
key: ${{env.cache-key}}
913-
restore-keys: |
914-
${{env.cache-key}}
909+
path: |
910+
./et-build
911+
./torchchat/utils/scripts
912+
key: et-build-${{runner.os}}-${{runner.arch}}-${{env.et-git-hash}}-${{ hashFiles('**/install_et.sh') }}
915913
- if: ${{ steps.install-et.outputs.cache-hit != 'true' }}
916914
continue-on-error: true
917915
run: |

0 commit comments

Comments
 (0)