Skip to content

Commit

Permalink
CI (alpine): Adapt ccache size to approx. twice the size after one run.
Browse files Browse the repository at this point in the history
It looks like with the update to Alpine Linux 3.20, the object files
that are produced by the compiler became smaller or the cache compression
of ccache is more efficient.
Reduce the maximum cache size to approx. twice the size of the ccache
after a single clean run.
  • Loading branch information
mmuetzel committed May 23, 2024
1 parent a011940 commit c5c7c94
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-arch-emu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ jobs:
arch: [x86, aarch64, armv7, ppc64le, s390x, riscv64]
include:
- arch: x86
ccache-max: 80M
ccache-max: 64M
extra-build-libs: ":GraphBLAS:LAGraph"
extra-check-libs: ":GraphBLAS:LAGraph"
- arch: aarch64
ccache-max: 42M
ccache-max: 28M
- arch: armv7
ccache-max: 42M
ccache-max: 25M
- arch: ppc64le
ccache-max: 45M
ccache-max: 28M
- arch: s390x
ccache-max: 42M
ccache-max: 28M
- arch: riscv64
ccache-max: 42M
ccache-max: 28M

name: alpine (${{ matrix.arch }})

Expand Down

0 comments on commit c5c7c94

Please sign in to comment.