Configure Docker build for Bazel 7.7.0 and add gRPC xDS upb map itertion compatibility patches - #244
Merged
Merged
Conversation
…tion compatibility patches
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Following the repository upgrade to Bazel 7.7.0 (
.bazelversion), the standalone Docker gRPC server build (build_docker_image.sh) encountered resolution and compilation failures. This PR addresses both the Java runtime bootstrap under Bazel 7 and fixes transitiveupbmap iteration signature mismatches in gRPC.Changes
ml_metadata/tools/docker_server/Dockerfile):BAZEL_VERSIONto 7.7.0.openjdk-11-jdk-headlessin the builder stage to satisfy Bazel 7's@local_jdkrequirement inside the container.patch_cmdsincom_github_grpc_grpcto patch out unused xDS client map iteration (xds_metadata_parser.cc,xds_http_rbac_filter.cc,xds_route_config_parser.cc) that conflicts with modernupbsignatures.Verification
//ml_metadata/metadata_store:metadata_store_server).docker build --no-cache).