This is an automated email from the ASF dual-hosted git repository.

mchades pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git


The following commit(s) were added to refs/heads/main by this push:
     new 61a6743505 [#9229] fix(CI): Free disk space to avoid Python tests 
failure. (#9230)
61a6743505 is described below

commit 61a6743505ab4866b53705985094cab1f7ebe2ae
Author: Mini Yu <[email protected]>
AuthorDate: Tue Nov 25 10:23:11 2025 +0800

    [#9229] fix(CI): Free disk space to avoid Python tests failure. (#9230)
    
    ### What changes were proposed in this pull request?
    
    Free some space before running python tests.
    
    ### Why are the changes needed?
    
    We need to release some disk space or tests will fail due to out of disk
    space.
    
    Fix: #9229
    
    ### Does this PR introduce _any_ user-facing change?
    
    N/A
    
    ### How was this patch tested?
    
    CI it self.
---
 .github/workflows/python-integration-test.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/python-integration-test.yml 
b/.github/workflows/python-integration-test.yml
index ba16663d36..b1e6145828 100644
--- a/.github/workflows/python-integration-test.yml
+++ b/.github/workflows/python-integration-test.yml
@@ -68,6 +68,10 @@ jobs:
       - name: Set up QEMU
         uses: docker/setup-qemu-action@v3
 
+      - name: Free up disk space
+        run: |
+          dev/ci/util_free_space.sh  
+
       - name: Python Client Integration Test
         id: integrationTest
         run: |

Reply via email to