Skip to content

Commit

Permalink
add qemu and dejagnu to cache
Browse files Browse the repository at this point in the history
needed by make report
also remove progress reporting to speed things up
  • Loading branch information
mickflemm committed Nov 7, 2024
1 parent 79d8c94 commit 58d174f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Remove unneeded frameworks to recover disk space
run: sudo ./.github/cleanup-rootfs.sh

- name: Checkout required submodules
run: git submodule update --init --progress -j $(nproc) --depth 1 binutils gcc gdb glibc llvm musl newlib uclibc-ng
run: git submodule update --init -j $(nproc) --depth 1 binutils gcc gdb glibc llvm musl newlib uclibc-ng qemu dejagnu

- name: Storage size optimization
run: |
Expand All @@ -35,6 +38,8 @@ jobs:
musl
newlib
uclibc-ng
qemu
dejagnu
.git/modules
key: submodule-cache-${{ github.run_id }}-${{ github.run_attempt }}

Expand Down Expand Up @@ -73,6 +78,8 @@ jobs:
musl
newlib
uclibc-ng
qemu
dejagnu
.git/modules
key: submodule-cache-${{ github.run_id }}-${{ github.run_attempt }}

Expand Down Expand Up @@ -166,6 +173,8 @@ jobs:
musl
newlib
uclibc-ng
qemu
dejagnu
.git/modules
key: submodule-cache-${{ github.run_id }}-${{ github.run_attempt }}

Expand Down

0 comments on commit 58d174f

Please sign in to comment.