Skip to content

Commit e4f46ec

Browse files
committed
chore(ci): Stop backend system tests from running on Android-only PRs (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.
1 parent 184b991 commit e4f46ec

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/system-tests-backend.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ on:
44
push:
55
branches:
66
- main
7+
paths-ignore:
8+
- '*android*/**'
9+
- 'sentry-compose/**'
10+
- 'sentry-samples/sentry-samples-android/**'
711
pull_request:
12+
paths-ignore:
13+
- '*android*/**'
14+
- 'sentry-compose/**'
15+
- 'sentry-samples/sentry-samples-android/**'
816

917
concurrency:
1018
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)