Skip to content

Commit ccb28f5

Browse files
committed
check disk space
1 parent 86dfd4b commit ccb28f5

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,10 @@ jobs:
3636
with:
3737
egress-policy: audit
3838

39-
- name: Free disk space
39+
- name: Check disk space
4040
if: ${{ matrix.os == 'ubuntu-latest'}}
4141
run: |
4242
df -h
43-
sudo rm -rf /usr/local/lib/android
44-
sudo rm -rf /usr/share/dotnet
45-
df -h
4643
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4744
with:
4845
submodules: true
@@ -57,6 +54,10 @@ jobs:
5754
repo-token: ${{ secrets.GITHUB_TOKEN }}
5855
- name: Test
5956
run: bash ./scripts/test.sh
57+
- name: Check disk space
58+
if: ${{ matrix.os == 'ubuntu-latest'}}
59+
run: |
60+
df -h
6061
lint:
6162
runs-on: ubuntu-latest
6263
steps:

.github/workflows/integration_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@ jobs:
1818
with:
1919
egress-policy: audit
2020

21-
- name: Free disk space
21+
- name: Check disk space
2222
run: |
2323
df -h
24-
sudo rm -rf /usr/local/lib/android
25-
sudo rm -rf /usr/share/dotnet
26-
df -h
2724
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2825
with:
2926
submodules: true
@@ -36,3 +33,6 @@ jobs:
3633
repo-token: ${{ secrets.GITHUB_TOKEN }}
3734
- name: Run integration tests
3835
run: ./scripts/integration_tests.sh
36+
- name: Check disk space
37+
run: |
38+
df -h

0 commit comments

Comments
 (0)