chore(ci): add E2E timing instrumentation and Gradle config cache#53
Merged
Conversation
Wraps E2E test steps with timing capture so duration is recorded even on failure. Each workflow now writes a timing.json artifact and outputs a timing table to the GitHub job summary. Also adds ~/.gradle/configuration-cache to Gradle cache paths for faster Android builds. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
Adds per-job timing instrumentation to all three E2E reusable workflows so we can track how long each E2E run takes and identify regressions. Also improves Gradle cache hit rate by including the configuration cache.
Changes
e2e-android.yml,e2e-ios.yml,e2e-react-native.yml) with$SECONDStiming that captures duration even on test failuretiming.jsonartifact and outputs a timing table to$GITHUB_STEP_SUMMARY~/.gradle/configuration-cacheto Gradle cache paths in Android and React Native workflowsWhy
As we start the segkit migration, we need baseline E2E timing data to measure whether changes improve or regress CI speed. The job summary tables make timing visible at a glance without digging into logs.
🤖 Generated with Claude Code