chore(ci): Skip backend system tests when updating Android modules#5455
Merged
Conversation
📲 Install BuildsAndroid
|
… (JAVA-519) Android-only PRs were silently triggering 24 unrelated backend system test jobs (~8 min each) on every push and PR. This commit adds path-ignore filters to exclude ~10 Android modules, so that backend CI tests will be skipped in the case of Android-specific changes.
e6e3910 to
e4f46ec
Compare
Contributor
Performance metrics 🚀
|
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 3d205d0 | 352.15 ms | 432.53 ms | 80.38 ms |
| 27d7cf8 | 369.82 ms | 422.62 ms | 52.80 ms |
| 33a08cc | 267.08 ms | 340.45 ms | 73.37 ms |
| b750b96 | 408.98 ms | 480.32 ms | 71.34 ms |
| 96eeafa | 361.43 ms | 455.07 ms | 93.63 ms |
| 22f4345 | 314.79 ms | 375.02 ms | 60.23 ms |
| 8c1fb22 | 316.62 ms | 352.78 ms | 36.16 ms |
| cf708bd | 434.73 ms | 502.96 ms | 68.22 ms |
| 48277cd | 320.38 ms | 379.90 ms | 59.52 ms |
| 22f4345 | 307.87 ms | 354.51 ms | 46.64 ms |
App size
| Revision | Plain | With Sentry | Diff |
|---|---|---|---|
| 3d205d0 | 1.58 MiB | 2.10 MiB | 532.97 KiB |
| 27d7cf8 | 1.58 MiB | 2.12 MiB | 549.42 KiB |
| 33a08cc | 1.58 MiB | 2.12 MiB | 555.28 KiB |
| b750b96 | 1.58 MiB | 2.10 MiB | 533.19 KiB |
| 96eeafa | 1.58 MiB | 2.19 MiB | 620.21 KiB |
| 22f4345 | 1.58 MiB | 2.29 MiB | 719.83 KiB |
| 8c1fb22 | 0 B | 0 B | 0 B |
| cf708bd | 1.58 MiB | 2.11 MiB | 539.71 KiB |
| 48277cd | 0 B | 0 B | 0 B |
| 22f4345 | 1.58 MiB | 2.29 MiB | 719.83 KiB |
runningcode
reviewed
May 21, 2026
Contributor
runningcode
left a comment
There was a problem hiding this comment.
Maybe we should always run everything on the main branch and just disable it for PR builds.
Keep path filters on pull_request only so Android-only PRs skip the job, but every merge to main still runs backend system tests. Co-authored-by: Cursor <cursoragent@cursor.com>
Member
Author
Good deal. Updated (cf. here). |
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.
📜 Description
Android-only PRs were silently triggering 24 unrelated backend system test jobs (up to 10 min each). This update lets us skip those jobs when we don't need them.
Every push to main still runs the full matrix (in line with @runningcode's review).
Quantifying the win
💡 Motivation and Context
Follow-up to #5453, which fixed the same issue for the Spring Boot matrix workflows.
addresses: JAVA-519
💚 How did you test it?
CI configuration only — no code behaviour changed. Verified glob semantics:
*android*/**is anchored to the repo root and matches any top-level directory whose name contains "android".📝 Checklist
sendDefaultPIIis enabled.🔮 Next steps
#skip-changelog