This is an automated email from the ASF dual-hosted git repository.
voonhous 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 baf830cf6eb3 fix(ci): stop docker-java17-test from sealing a
near-empty Maven cache (#19441)
baf830cf6eb3 is described below
commit baf830cf6eb303b3c7a36054c42547a6c33213c8
Author: Vova Kolmakov <[email protected]>
AuthorDate: Fri Jul 31 17:07:51 2026 +0700
fix(ci): stop docker-java17-test from sealing a near-empty Maven cache
(#19441)
Co-authored-by: Vova Kolmakov <[email protected]>
---
.github/workflows/bot.yml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml
index 2edba1577dca..ec2cfe0cddbd 100644
--- a/.github/workflows/bot.yml
+++ b/.github/workflows/bot.yml
@@ -1193,7 +1193,9 @@ jobs:
java-version: '17'
distribution: 'temurin'
architecture: x64
- cache: maven
+ # No `cache: maven` on purpose. This job runs no Maven on the host:
run_docker_java17.sh
+ # builds inside the container and never mounts $HOME/.m2. Caching
here seals a near-empty
+ # repo under the key all jobs share, which every later job then
discards and re-downloads.
- name: UT/FT - Docker Test - OpenJDK 17
env:
FLINK_PROFILE: ${{ matrix.flinkProfile }}
@@ -1203,7 +1205,6 @@ jobs:
# Only support Spark 3.4 for now
if: ${{ env.SPARK_PROFILE >= 'spark3.4' &&
needs.changes.outputs.relevant == 'true' }}
run: |
- HUDI_VERSION=$(mvn help:evaluate -Dexpression=project.version -q
-DforceStdout)
./packaging/bundle-validation/run_docker_java17.sh
validate-bundles: