Skip to content

Commit

Permalink
Maximize build space on Github runners (#2324)
Browse files Browse the repository at this point in the history
### Ticket
N/A

### Problem description
We started running out of space when building on Github runners.

### What's changed
~Free up space on runners by removing unneeded packages using
https://github.com/easimon/maximize-build-space action~
Free up space on runners by using custom action that removes unused
software packages from Github runner

### Checklist
- [x] New/Existing tests provide coverage for changes
  • Loading branch information
vmilosevic authored and jserbedzijaTT committed Mar 1, 2025
1 parent 756b9bc commit 6e232c6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ jobs:
image: ${{ needs.build-image.outputs.docker-image }}

steps:

- name: Maximize space
uses: tenstorrent/tt-github-actions/.github/actions/maximize_space@main

- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down Expand Up @@ -193,6 +197,9 @@ jobs:

steps:

- name: Maximize space
uses: tenstorrent/tt-github-actions/.github/actions/maximize_space@main

- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down

0 comments on commit 6e232c6

Please sign in to comment.