We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01eb7cf commit 99953faCopy full SHA for 99953fa
1 file changed
.github/workflows/device-tests-ios.yml
@@ -71,6 +71,12 @@ jobs:
71
- name: Setup Environment
72
uses: ./.github/actions/environment
73
74
+ - name: Disable host crash reporter
75
+ # Avoids crash dialog popups and ReportCrash CPU overhead during simulator tests
76
+ run: |
77
+ launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist || true
78
+ sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist || true
79
+
80
- name: Build iOS Test App
81
run: pwsh ./scripts/device-test.ps1 ios -Build
82
0 commit comments