Skip to content

Commit 75897b6

Browse files
authored
Update appdistro github workflow to run integration tests on appdistro presubmit (#8121)
Removes integration tests from general PR presubmits, preventing appdistro bugs and issues from blocking other products.
1 parent 5f409d9 commit 75897b6

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/app-distribution-gradle-compatibility-tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name: App Distribution Gradle Compatibility Tests
33
on:
44
schedule:
55
- cron: '0 6 * * *' # Run daily at 6 AM
6+
pull_request:
7+
paths:
8+
- 'firebase-appdistribution/**'
9+
- 'firebase-appdistribution-api/**'
10+
- 'firebase-appdistribution-gradle/**'
611
workflow_dispatch: # Allow manual triggering
712

813
permissions:

firebase-appdistribution-gradle/firebase-appdistribution-gradle.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,6 @@ task integrationTest(type: Test) {
167167
}
168168
}
169169

170-
check.dependsOn(integrationTest)
171-
172170
task prodTest(type: Test) {
173171
description = 'Runs prod tests.'
174172
group = 'verification'

0 commit comments

Comments
 (0)