ci(e2e): remove obsolete CocoaPods sample build job#6500
Open
antonis wants to merge 2 commits into
Open
Conversation
sentry-cocoa dropped CocoaPods (trunk) support after 9.19.1, so the source-build fallback (SENTRY_USE_XCFRAMEWORK=0) can no longer resolve newer versions. The dedicated CocoaPods regression job now fails on any Cocoa bump past 9.19.1, so remove it and the now single-valued sentry-consumption matrix dimension. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
Semver Impact of This PR⚪ None (no version bump detected) 📋 Changelog PreviewThis is how your changes will appear in the changelog.
🤖 This preview updates automatically when you update the PR. |
Contributor
iOS (legacy) Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 08c933b+dirty | 1224.53 ms | 1226.59 ms | 2.06 ms |
| cb5d89e+dirty | 3851.80 ms | 1225.70 ms | -2626.10 ms |
| ebc61a9+dirty | 3844.58 ms | 1218.91 ms | -2625.67 ms |
| 58dacb0+dirty | 3849.82 ms | 1228.28 ms | -2621.54 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 08c933b+dirty | 3.38 MiB | 4.78 MiB | 1.40 MiB |
| cb5d89e+dirty | 5.15 MiB | 6.70 MiB | 1.54 MiB |
| ebc61a9+dirty | 4.98 MiB | 6.51 MiB | 1.53 MiB |
| 58dacb0+dirty | 5.15 MiB | 6.67 MiB | 1.51 MiB |
Contributor
Android (legacy) Performance metrics 🚀
|
antonis
marked this pull request as ready for review
July 22, 2026 11:37
Contributor
iOS (new) Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 08c933b+dirty | 1204.21 ms | 1217.09 ms | 12.88 ms |
| cb5d89e+dirty | 3854.04 ms | 1228.56 ms | -2625.48 ms |
| ebc61a9+dirty | 3822.19 ms | 1201.34 ms | -2620.85 ms |
| 58dacb0+dirty | 3839.13 ms | 1211.04 ms | -2628.09 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 08c933b+dirty | 3.38 MiB | 4.78 MiB | 1.40 MiB |
| cb5d89e+dirty | 5.15 MiB | 6.70 MiB | 1.54 MiB |
| ebc61a9+dirty | 4.98 MiB | 6.51 MiB | 1.53 MiB |
| 58dacb0+dirty | 5.15 MiB | 6.67 MiB | 1.51 MiB |
Contributor
Android (new) Performance metrics 🚀
|
bruno-garcia
force-pushed
the
deps/scripts/update-cocoa.sh
branch
from
July 22, 2026 12:42
b42eea9 to
63e7c97
Compare
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.
📢 Type of change
📜 Description
Removes the dedicated CocoaPods sample build job (
sentry-consumption: cocoapods) fromsample-application.yml, along with the now single-valuedsentry-consumptionmatrix dimension and its references (job name,SENTRY_USE_XCFRAMEWORK=0export, archive/upload/log-artifact conditions and names).Stacked on top of #6409 (Cocoa bump to 9.22.0).
💡 Motivation and Context
sentry-cocoa dropped CocoaPods (trunk) support after
9.19.1—9.20.0,9.21.0, and9.22.0are published only as GitHub Release xcframeworks and are not on the CocoaPods CDN.The
cocoapodsjob exportsSENTRY_USE_XCFRAMEWORK=0to exercise the source-build fallback (s.dependency 'Sentry', sentry_cocoa_version), which resolvesSentryfrom trunk. On #6409 that job fails becauseSentry (= 9.22.0)isn't on trunk:The job only passed on
mainbecausemainis still pinned to9.19.1. Since the fallback can no longer resolve any Cocoa version past9.19.1, the regression job is obsolete and blocks every future Cocoa bump.💚 How did you test it?
📝 Checklist
sendDefaultPIIis enabled.🔮 Next steps
SENTRY_USE_XCFRAMEWORK=0fallback path inRNSentry.podspecis now effectively dead for versions > 9.19.1. Consider removing it (and the deprecatedSENTRY_USE_SPMalias) in a follow-up, unless we intend to keep it for offline/proxy builds pinned to old Cocoa versions.mainonce its base lands.