Skip to content

Commit

Permalink
Ref #534: Build runs out of space
Browse files Browse the repository at this point in the history
  • Loading branch information
essobedo committed Oct 22, 2024
1 parent 12d17fa commit 0ed5b9a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,27 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check disk space
run: df . -h
- name: Free disk space
run: |
sudo rm -rf /usr/share/dotnet \
/opt/ghc \
"/usr/local/share/boost" \
"$AGENT_TOOLSDIRECTORY" \
- name: Check disk space
run: df . -h
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: zulu
- run: ./mvnw -V --no-transfer-progress clean install -Ddump.logs.on.failure=true
- name: Check disk space
run: df . -h
- name: List running containers
run: docker ps
- name: List containers
run: docker container ls -a
- name: List images
run: docker image ls -a

0 comments on commit 0ed5b9a

Please sign in to comment.