Skip to content

Commit

Permalink
fix: cache
Browse files Browse the repository at this point in the history
Signed-off-by: AtomicFS <[email protected]>
  • Loading branch information
AtomicFS committed Nov 18, 2024
1 parent 9907169 commit 33941d3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ jobs:
id: cache-toolchains
uses: actions/cache/restore@v4
with:
path: coreboot/util/crossgcc/${{ matrix.arch }}-xgcc
path: |
"${{ steps.coreboot-hash.outputs.COREBOOT_HASH }}-${{ matrix.arch }}-xgcc.tar"
"${{ steps.coreboot-hash.outputs.COREBOOT_HASH }}-${{ matrix.arch }}-xgcc.tar.sha256"
key: ${{ steps.cache-key.outputs.CACHE_KEY }}-xgcc

- name: Install dependencies if needed
Expand Down Expand Up @@ -222,7 +224,9 @@ jobs:
uses: actions/cache/save@v4
if: steps.toolchains-exist.outputs.EXIST == 'false' && steps.cache-toolchains.outputs.cache-hit != 'true'
with:
path: coreboot/util/crossgcc/${{ matrix.arch }}-xgcc
path: |
"${{ steps.coreboot-hash.outputs.COREBOOT_HASH }}-${{ matrix.arch }}-xgcc.tar"
"${{ steps.coreboot-hash.outputs.COREBOOT_HASH }}-${{ matrix.arch }}-xgcc.tar.sha256"
key: ${{ steps.cache-key.outputs.CACHE_KEY }}-xgcc


Expand Down

0 comments on commit 33941d3

Please sign in to comment.