Skip to content

Commit

Permalink
Revert "fix: junk"
Browse files Browse the repository at this point in the history
This reverts commit a881b64.
  • Loading branch information
AtomicFS committed Oct 15, 2024
1 parent 57ee619 commit 22d585d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/docker-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,30 +169,32 @@ jobs:
# Store toolchains and utils in cache
- name: Cache toolchains
uses: actions/cache/save@v4
if: steps.cache-toolchains.outputs.cache-hit != 'true'
with:
path: coreboot/util/crossgcc/xgcc
key: coreboot-${{ steps.version.outputs.COREBOOT_VERSION }}-${{ matrix.arch }}-xgcc
- name: Cache utils
uses: actions/cache/save@v4
if: steps.cache-utils.outputs.cache-hit != 'true'
with:
path: /usr/local/bin
key: coreboot-${{ steps.version.outputs.COREBOOT_VERSION }}-${{ matrix.arch }}-utils

# Upload toolchains and utils as artifacts
- name: Upload toolchain
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.4.3
with:
name: coreboot-${{ steps.version.outputs.COREBOOT_VERSION }}-${{ matrix.arch }}-xgcc
path: coreboot/util/crossgcc/xgcc
retention-days: 30
retention-days: 7
include-hidden-files: true
compression-level: 9
- name: Upload utils
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.4.3
with:
name: coreboot-${{ steps.version.outputs.COREBOOT_VERSION }}-${{ matrix.arch }}-utils
path: /usr/local/bin
retention-days: 30
retention-days: 7
include-hidden-files: true
compression-level: 9

Expand Down

0 comments on commit 22d585d

Please sign in to comment.