Skip to content

Commit

Permalink
add missing action param
Browse files Browse the repository at this point in the history
  • Loading branch information
pjk25 committed Apr 25, 2024
1 parent c80ca3c commit d338879
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test-make.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- name: RESTORE BUILT REPO
uses: actions/cache@v4
with:
path: ${{ github.workspace }}
key: ${{ runner.os }}-make-cache-${{ needs.load-test-result-cache.outputs.hash }}
fail-on-cache-miss: true
- name: RESTORE TEST RESULT CACHE
Expand Down Expand Up @@ -132,6 +133,7 @@
- name: RESTORE BUILT REPO
uses: actions/cache@v4
with:
path: ${{ github.workspace }}
key: ${{ runner.os }}-make-cache-${{ needs.load-test-result-cache.outputs.hash }}
fail-on-cache-miss: true
- name: RESTORE TEST RESULT CACHE
Expand Down Expand Up @@ -239,7 +241,8 @@ jobs:
- name: CACHE BUILT REPO
uses: actions/cache@v4
with:
key: ${{ runner.os }}-make-cache-${{ needs.load-test-result-cache.outputs.hash }}
path: ${{ github.workspace }}
key: ${{ runner.os }}-make-cache-${{ steps.hash.outputs.hash }}
- name: BUILD
run: |
make
Expand Down
Loading

0 comments on commit d338879

Please sign in to comment.