Skip to content

Commit ae5273f

Browse files
geoandgsmet
authored andcommitted
Use disk space reclaim script from quarkus repo
1 parent 7513e46 commit ae5273f

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/ci-prerequisites.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Reclaim disk space, otherwise we only have 13 GB free at the start of a job
2+
3+
docker rmi node:10 node:12 mcr.microsoft.com/azure-pipelines/node8-typescript:latest
4+
# That is 18 GB
5+
sudo rm -rf /usr/share/dotnet
6+
# That is 1.2 GB
7+
sudo rm -rf /usr/share/swift

.github/workflows/native-build-development.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
with:
1616
ref: development
1717

18+
- name: Reclaim Disk Space
19+
run: .github/ci-prerequisites.sh
20+
1821
- uses: actions/cache@v1
1922
with:
2023
path: ~/.m2/repository

0 commit comments

Comments
 (0)