Skip to content

Commit 200297f

Browse files
authored
Print available disk space throughout the CI job (#538)
1 parent 8c91b2e commit 200297f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/e2e.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
echo
3434
- name: Checkout repo
3535
uses: actions/checkout@v2
36+
- name: Print available disk space
37+
run: |
38+
echo "Available disk space:"
39+
sudo df -h
3640
- name: Cache ICU4C binary versions
3741
id: icu4c-binaries
3842
uses: actions/cache@v3
@@ -50,8 +54,16 @@ jobs:
5054
uses: actions-rs/toolchain@v1
5155
with:
5256
toolchain: 1.82
57+
- name: Print available disk space
58+
run: |
59+
echo "Available disk space:"
60+
sudo df -h
5361
- name: Run End-to-end script
5462
run: bash generateDataAndRun.sh
63+
- name: Print available disk space
64+
run: |
65+
echo "Available disk space:"
66+
sudo df -h
5567
- name: Setup Pages
5668
id: pages
5769
uses: actions/configure-pages@v4

0 commit comments

Comments
 (0)