feat(cli): Set SENTRY_PIPELINE environment variable for all sentry-cli invocations#1036
Merged
runningcode merged 4 commits intomainfrom Dec 15, 2025
Merged
feat(cli): Set SENTRY_PIPELINE environment variable for all sentry-cli invocations#1036runningcode merged 4 commits intomainfrom
runningcode merged 4 commits intomainfrom
Conversation
…i invocations This sets SENTRY_PIPELINE to 'sentry-gradle-plugin/<version>' for all sentry-cli invocations, enabling better pipeline tracking and analytics on the server side. The environment variable is now set in: - SentryCliExecTask (base class for all CLI execution tasks) - SentryCliInfoValueSource (for CLI info gathering) - SentryCliVersionValueSource (for CLI version detection) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Contributor
|
Extracted the SENTRY_PIPELINE environment variable setup into a reusable extension function `ExecSpec.setSentryPipelineEnv()` in SentryCliExec.kt. This eliminates code duplication and provides a single source of truth for setting the pipeline environment variable across all sentry-cli invocations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
runningcode
added a commit
to getsentry/sentry-cli
that referenced
this pull request
Dec 15, 2025
…ads (EME-606) (#2994) ## Summary Automatically track Sentry plugin versions in build uploads by parsing the existing `SENTRY_PIPELINE` environment variable. This enables size analysis and build distribution tracking by storing plugin version metadata in the PreprodArtifact database table. ## Changes ### Plugin Version Detection - Reads the existing `SENTRY_PIPELINE` environment variable - Parses format: `sentry-gradle-plugin/4.12.0` or `sentry-fastlane-plugin/1.2.3` - Only extracts versions for recognized Sentry plugins: - `sentry-gradle-plugin` - `sentry-fastlane-plugin` ### Metadata File Format The `.sentry-cli-metadata.txt` file inside uploaded zips now includes detected plugin info: ``` sentry-cli-version: 2.58.2 sentry-gradle-plugin: 4.12.0 ``` Related PRs: getsentry/launchpad#464 getsentry/sentry#103062 getsentry/sentry-android-gradle-plugin#1036 getsentry/sentry-fastlane-plugin#365 --------- Co-authored-by: Claude <noreply@anthropic.com>
romtsn
approved these changes
Dec 15, 2025
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
This PR sets the
SENTRY_PIPELINEenvironment variable tosentry-gradle-plugin/<version>for all sentry-cli invocations, enabling better pipeline tracking and analytics on the server side.Changes
The environment variable is now set in:
Related PRs:
getsentry/sentry-fastlane-plugin#365
getsentry/launchpad#464
getsentry/sentry#103062
getsentry/sentry-fastlane-plugin#365
🤖 Generated with Claude Code