freesinger commented on PR #11343:
URL: https://github.com/apache/gravitino/pull/11343#issuecomment-4627918020
The Docker CI failure this PR run into is caused by
`dev/docker/gravitino/gravitino-dependency.sh` assuming bundle jars still exist
under `bundles/*/build/libs` after compileDistribution.
However, compileDistribution depends on cleanDistributionPackage, and
cleanDistributionPackage deletes all subproject build/libs directories. Since
bundle modules are excluded from copySubprojectLib, compileDistribution does
not rebuild those bundle jars. As a result, the subsequent find command fails
because `bundles/aliyun-bundle/build/libs` does not exist.
The fix is to explicitly rebuild the required bundle shadow jars after
compileDistribution and before the find/copy steps.
I'm trying to fix this in another PR, could you take a look at this PR?
@jerryshao
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]