[CI] Update images to 20260301-134651-63f099ad#18827
Conversation
Summary of ChangesHello @mshr-h, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the CI docker images to incorporate recent changes from other PRs, ensuring the CI environment is up-to-date. It also refactors the JVM build system for better consistency in library path management, migrates Python package installations in CI scripts to the faster Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates CI docker images and refactors parts of the build and CI scripts. The changes include:
- Updating the docker image tag in
ci/jenkins/docker-images.ini. - Refactoring the JVM build to use a configurable
runtime.libdirproperty, removing hardcoded build paths frompom.xmlfiles. This is a good improvement for maintainability. - Switching from
pipto the fasteruv pipinstaller in several CI scripts. - Cleaning up CI scripts by removing several commands and obsolete build configurations.
My review focuses on an introduced redundancy in the Makefile. I've suggested removing an apparently obsolete Maven property. The rest of the changes look good and seem to improve the CI infrastructure.
| mvn clean package -P$(JVM_PKG_PROFILE) -Dcxx="$(CXX)" \ | ||
| -Dcflags="$(PKG_CFLAGS)" -Dldflags="$(PKG_LDFLAGS)" \ | ||
| -Dcurrent_libdir="$(TVM_BUILD_PATH)" $(JVM_TEST_ARGS)) | ||
| -Dcurrent_libdir="$(TVM_BUILD_PATH)" -Druntime.libdir="$(TVM_BUILD_PATH)" $(JVM_TEST_ARGS)) |
There was a problem hiding this comment.
| mvn install -P$(JVM_PKG_PROFILE) -Dcxx="$(CXX)" \ | ||
| -Dcflags="$(PKG_CFLAGS)" -Dldflags="$(PKG_LDFLAGS)" \ | ||
| -Dcurrent_libdir="$(TVM_BUILD_PATH)" $(JVM_TEST_ARGS)) | ||
| -Dcurrent_libdir="$(TVM_BUILD_PATH)" -Druntime.libdir="$(TVM_BUILD_PATH)" $(JVM_TEST_ARGS)) |
826c764 to
d5f35c6
Compare
20260226-030010-8c259a38 20260226-030010-8c259a38
|
local ci script ( |
8f61b27 to
c0d25b3
Compare
|
Seems like we need to update sphinx dependencies. Working on #18860 |
e80e003 to
5eb3c73
Compare
Fix CI errors on docs generation. Part of #18827 Verifies that docs are generated correctly on local: - `docker/build.sh ci_gpu && python tests/scripts/ci.py docs -d tvm.ci_gpu` then - `python tests/scripts/ci.py serve-docs`
5eb3c73 to
4b6721b
Compare
4b6721b to
b3f3276
Compare
20260226-030010-8c259a3820260301-134651-63f099ad
Update the CI docker images to include recent changes in #18812 and #18817
Also includes local CI maintenance: