Skip to content

Commit

Permalink
ci: More build space on macos (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner authored Nov 27, 2024
1 parent 2b19878 commit 1dbf7e7
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,22 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- name: Maximize build space
- name: Maximize build space (Linux)
if: runner.os == 'Linux'
uses: AdityaGarg8/remove-unwanted-software@v4
with:
remove-dotnet: "true"
remove-android: "true"
remove-codeql: "true"
remove-docker-images: "true"
remove-dotnet: 'true'
remove-android: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'

- name: Maximise build space (Mac OS)
if: runner.os == 'macOS'
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Print platform information
run: uname -ms
Expand Down

0 comments on commit 1dbf7e7

Please sign in to comment.