Skip to content

Commit

Permalink
Add ccache size limits for Ubuntu on ARM runners
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Jan 18, 2025
1 parent 3508c46 commit c1ddffc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/make-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,18 @@ jobs:
- os: ubuntu-22.04
compiler: gcc
ccache-max: 1.2G
- os: ubuntu-24.04-arm
compiler: gcc
ccache-max: 1.2G
- os: ubuntu-24.04
compiler: clang
ccache-max: 400M
- os: ubuntu-22.04
compiler: clang
ccache-max: 400M
# exclude:
# - os: ubuntu-24.04-arm
# compiler: clang
- os: ubuntu-24.04-arm
compiler: clang
ccache-max: 400M

name: ${{ matrix.os }} ${{ matrix.compiler }}

Expand All @@ -52,6 +55,9 @@ jobs:
CXX: ${{ matrix.cxx }}

steps:
- name: get CPU information
run: lscpu

- name: checkout repository
uses: actions/checkout@v4

Expand Down

0 comments on commit c1ddffc

Please sign in to comment.