Skip to content

Commit f3dfac7

Browse files
committed
Debug GitHub low disk space error
1 parent f0b486d commit f3dfac7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
run: |
3838
python -m pip install --upgrade pip
3939
pip install -r .github/workflows/requirements.txt
40+
- name: Check disk space
41+
run: ./check-disk-space
42+
shell: bash
4043
- name: Execute test-all
4144
run: ./test-all
4245
shell: bash

check-disk-space

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
df -h
6+
du -sh
7+
du -sh /*

0 commit comments

Comments
 (0)