Skip to content

Conversation

@scotthart
Copy link
Member

@scotthart scotthart commented Feb 5, 2026

This change is Reviewable

@gemini-code-assist
Copy link

Summary of Changes

Hello @scotthart, 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 primarily focuses on maintenance updates for the continuous integration (CI) environment. It updates the Google Cloud SDK version used in the build process and modifies Bazel test commands to disable caching for integration test results, aiming to ensure tests run with the latest dependencies and produce consistent outcomes.

Highlights

  • Google Cloud SDK Version Update: The Google Cloud SDK version used in CI/CD pipelines has been updated from 474.0.0 to 555.0.0, along with corresponding SHA256 checksums for x86_64 and arm architectures.
  • Bazel Test Command Modification: The bazel commands for Storage and Spanner integration tests in the CI build process now include the --cache_test_results=no flag.
Changelog
  • ci/cloudbuild/builds/lib/integration.sh
    • Added --cache_test_results=no to the bazel command lines for Storage and Spanner integration tests.
  • ci/install-cloud-sdk.sh
    • Updated GOOGLE_CLOUD_CPP_CLOUD_SDK_VERSION from 474.0.0 to 555.0.0.
    • Updated the SHA256 checksums for both x86_64 and arm architectures to match the new SDK version.
Activity
  • No specific activity (comments, reviews, progress) has been recorded for this pull request yet.
Using Gemini Code Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the gcloud SDK version used in CI and disables test caching for Storage and Spanner integration tests that use an emulator. The SDK update is a routine change. The change to disable test caching for some emulator tests but not others introduces an inconsistency. I have added a review comment suggesting to either apply the change consistently across all similar tests or to add a comment explaining the discrepancy, which would improve the script's maintainability.

Comment on lines +211 to +215
bazel "${verb}" "${args[@]}" --cache_test_results=no --test_tag_filters="integration-test,-ud-only"

io::log_h2 "Running Spanner integration tests (with emulator)"
"google/cloud/spanner/ci/${EMULATOR_SCRIPT}" \
bazel "${verb}" "${args[@]}" --test_tag_filters="integration-test,-ud-only"
bazel "${verb}" "${args[@]}" --cache_test_results=no --test_tag_filters="integration-test,-ud-only"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The flag --cache_test_results=no has been added for Storage and Spanner tests, but not for the other emulator-based tests (Pub/Sub, Bigtable, REST). This introduces an inconsistency. For better maintainability, this flag should either be applied to all similar test runs in this function, or a comment should be added explaining why it's specific to Storage and Spanner.

@codecov
Copy link

codecov bot commented Feb 5, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 92.96%. Comparing base (14c94b4) to head (a04da2d).
⚠️ Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #15938   +/-   ##
=======================================
  Coverage   92.96%   92.96%           
=======================================
  Files        2460     2460           
  Lines      228901   228901           
=======================================
+ Hits       212791   212807   +16     
+ Misses      16110    16094   -16     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant