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

sivabalan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a6766c373ba chore: Integration Test Flakiness: free more disk space 
before running (#14316)
7a6766c373ba is described below

commit 7a6766c373baf4eeadf0971ecc4946cb5eb4fa4a
Author: Tim Brown <[email protected]>
AuthorDate: Sat Nov 22 01:28:35 2025 -0500

    chore: Integration Test Flakiness: free more disk space before running 
(#14316)
---
 .github/workflows/bot.yml | 8 +++++++-
 hudi-integ-test/pom.xml   | 2 +-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml
index ba2e4d996e18..32b8b7ad5d1d 100644
--- a/.github/workflows/bot.yml
+++ b/.github/workflows/bot.yml
@@ -1212,6 +1212,13 @@ jobs:
           SCALA_PROFILE: '-Dscala-2.12 -Dscala.binary.version=2.12'
         run:
           mvn test $SCALA_PROFILE -D"$SPARK_PROFILE" -Pintegration-tests 
-DskipUTs=false -DskipITs=true -pl hudi-integ-test $MVN_ARGS
+      - name: 'Free space'
+        run: |
+          sudo rm -rf /usr/share/dotnet
+          sudo rm -rf /usr/local/lib/android
+          sudo rm -rf /opt/ghc
+          sudo rm -rf /usr/local/share/boost
+          docker system prune --all --force --volumes
       - name: 'IT'
         env:
           SPARK_PROFILE: ${{ matrix.sparkProfile }}
@@ -1225,7 +1232,6 @@ jobs:
           SPARK_ARCHIVE_BASENAME=$(basename $SPARK_ARCHIVE)
           export SPARK_HOME=$GITHUB_WORKSPACE/${SPARK_ARCHIVE_BASENAME%.*}
           rm -f $GITHUB_WORKSPACE/$SPARK_ARCHIVE
-          docker system prune --all --force
           mvn verify $SCALA_PROFILE -D"$SPARK_PROFILE" -Pintegration-tests -pl 
!hudi-flink-datasource/hudi-flink $MVN_ARGS
 
   build-spark-java17:
diff --git a/hudi-integ-test/pom.xml b/hudi-integ-test/pom.xml
index fa30fcddcc3d..c08a6b22dcab 100644
--- a/hudi-integ-test/pom.xml
+++ b/hudi-integ-test/pom.xml
@@ -471,7 +471,7 @@
               <executable>/bin/bash</executable>
               <arguments>
                 <argument>-c</argument>
-                <argument>export HUDI_WS=`dirname ${project.basedir}`; docker 
compose -f ${dockerCompose.file} up -d</argument>
+                <argument>export HUDI_WS=`dirname ${project.basedir}`; docker 
compose -f ${dockerCompose.file} up -d --quiet-pull</argument>
               </arguments>
             </configuration>
           </execution>

Reply via email to