Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@ jobs:
run: chmod +x gradlew
- name: Build and Test with Gradle
run: ./gradlew build test
- name: Upload test reports
if: failure()
uses: actions/upload-artifact@v7
with:
name: test-reports
path: '**/build/reports/tests/test/'
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,10 @@ dependencies {
compile "com.google.guava:guava:${guavaVersion}"
}

test {
// uploadVideoChunks allocates two 50MB buffers per call; the large-video test uses ~150MB
// total (content + pool). Raise the heap ceiling so back-to-back tests don't OOM.
maxHeapSize = "1g"
}

configurePublication(project)
Loading