Skip to content

Commit 3e0bf91

Browse files
committed
WIP
1 parent 113ab4b commit 3e0bf91

File tree

2 files changed

+2100
-1792
lines changed

2 files changed

+2100
-1792
lines changed

.github/actions/install/action.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ runs:
5454
run: |
5555
echo "${PWD}/venv/bin" >> $GITHUB_PATH
5656
57+
- name: Free up disk space
58+
if: steps.restore.outputs.cache-hit != 'true'
59+
shell: bash
60+
run: |
61+
# See https://github.com/actions/runner-images/issues/9344 for context.
62+
sudo rm -rf /opt/ghc
63+
sudo rm -rf /usr/share/dotnet
64+
sudo rm -rf /usr/local/share/boost
65+
5766
- name: Install
5867
if: steps.restore.outputs.cache-hit != 'true'
5968
shell: bash

0 commit comments

Comments
 (0)