Skip to content

Commit 32c80f3

Browse files
committed
chore: add ios crash diagnostics logging
Instrument iOS crash artifact lookup with compact collector summaries and narrow crash validation CI to the crash-monitor harness tests.
1 parent e279043 commit 32c80f3

2 files changed

Lines changed: 245 additions & 37 deletions

File tree

.github/workflows/e2e-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
name: E2E Android
2828
runs-on: ubuntu-22.04
2929
timeout-minutes: 30
30-
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main') || (github.event_name == 'workflow_dispatch' && (github.event.inputs.platform == 'all' || github.event.inputs.platform == 'android')) }}
30+
if: ${{ false }}
3131
env:
3232
HARNESS_DEBUG: true
3333
DEBUG: 'Metro:*'
@@ -116,7 +116,7 @@ jobs:
116116
name: E2E iOS
117117
runs-on: macos-latest
118118
timeout-minutes: 30
119-
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main') || (github.event_name == 'workflow_dispatch' && (github.event.inputs.platform == 'all' || github.event.inputs.platform == 'ios')) }}
119+
if: ${{ false }}
120120
env:
121121
HARNESS_DEBUG: true
122122
DEBUG: 'Metro:*'
@@ -217,7 +217,7 @@ jobs:
217217
name: E2E Web
218218
runs-on: ubuntu-22.04
219219
timeout-minutes: 30
220-
if: ${{ (github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main') || (github.event_name == 'workflow_dispatch' && (github.event.inputs.platform == 'all' || github.event.inputs.platform == 'web')) }}
220+
if: ${{ false }}
221221
env:
222222
HARNESS_DEBUG: true
223223
DEBUG: 'Metro:*'
@@ -342,9 +342,9 @@ jobs:
342342
uses: ./
343343
with:
344344
app: android/app/build/outputs/apk/debug/app-debug.apk
345-
runner: android-crash-pre-rn
345+
runner: android
346346
projectRoot: apps/playground
347-
harnessArgs: --testPathPatterns smoke
347+
harnessArgs: --testPathPatterns src/__tests__/crash-monitor
348348
preRunHook: |
349349
echo "HARNESS_PROJECT_ROOT=$HARNESS_PROJECT_ROOT"
350350
echo "HARNESS_RUNNER=$HARNESS_RUNNER"
@@ -467,9 +467,9 @@ jobs:
467467
uses: ./
468468
with:
469469
app: ios/build/Build/Products/Debug-iphonesimulator/HarnessPlayground.app
470-
runner: ios-crash-pre-rn
470+
runner: ios
471471
projectRoot: apps/playground
472-
harnessArgs: --testPathPatterns smoke
472+
harnessArgs: --testPathPatterns src/__tests__/crash-monitor
473473
preRunHook: |
474474
echo "HARNESS_PROJECT_ROOT=$HARNESS_PROJECT_ROOT"
475475
echo "HARNESS_RUNNER=$HARNESS_RUNNER"

0 commit comments

Comments
 (0)