[Gemini Log Analyzer] Part 1: Backend Foundation (Models, Config, & Setup)#5042
Merged
auto-submit[bot] merged 4 commits intoflutter:mainfrom May 5, 2026
Merged
Conversation
44379a0 to
bed1895
Compare
auto-submit Bot
pushed a commit
that referenced
this pull request
May 5, 2026
… & Database Flow) (#5045) This is Part 2 of the stacked Pull Request series implementing the Gemini Log Analyzer feature. **Depends on Part 1 (already merged):** #5042 This PR extracts the backend data flow, configuration, dynamic config flags, and serialization models from the API implementation branch into a clean infrastructure layer: - Configures AppEngine service config and flags in `config.yaml` and generated dynamic config files. - Implements database storage interface `storeLogAnalysis` in `UnifiedCheckRun`. - Adds the `logAnalysis` field to the `PresubmitJobResponse` RPC models to serialize results. ### Stacked PR Series: - Part 1: Backend Foundation (Models & Setup) (Merged) - **Part 2: Backend Infrastructure (Config & Database Data Flow)** (This PR) - Part 3: Backend Core API (Genkit Logic & Handlers) - Part 4: Frontend Dashboard UI
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.
This is Part 1 of a stacked PR series implementing the Gemini Log Analyzer feature: flutter/flutter#185700
This PR establishes the required foundation:
APP_DART_GEMINI_LOG_ANALYZER_KEYsecret config property toConfig.log_analysisandbuild_idfields to FirestorePresubmitJobmodel.build_idtoPresubmitJobResponseRPC model incocoon_common.Stacked PR Series: