Skip to content
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/scripts-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,21 @@ jobs:
if-no-files-found: warn
retention-days: 14
compression-level: 6
# Logcat captures from connectedAndroidTest and the in-script retry
# (`connectedAndroidTest.log`, `connectedAndroidTest-retry.log`). These
# are the only place to debug CN1SS chunk-decode flakes — they hold
# the raw base64 chunks plus the `am start` / pidof diagnostics. If
# this upload step disappears, the next decode flake will be
# un-debuggable: keep it.
- name: Upload Android instrumentation logs
if: always() && matrix.id == 'default'
uses: actions/upload-artifact@v4
with:
name: android-instrumentation-logs
path: artifacts/connectedAndroidTest*.log
if-no-files-found: warn
retention-days: 14
compression-level: 6
- name: Upload Android test report
if: always() && matrix.id == 'default'
uses: actions/upload-artifact@v4
Expand Down
Loading
Loading