File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 4545 run : npm run test:macos
4646
4747 - name : Run Tests on iOS
48+ env :
49+ IOS_BUILD_TIMEOUT_MS : " 600000"
4850 run : npm run test:ios
Original file line number Diff line number Diff line change @@ -87,7 +87,9 @@ function parsePositiveInt(name, fallback) {
8787}
8888
8989const commandTimeoutMs = parseTimeoutMs ( "IOS_COMMAND_TIMEOUT_MS" , 3 * 60 * 1000 ) ;
90- const buildTimeoutMs = parseTimeoutMs ( "IOS_BUILD_TIMEOUT_MS" , commandTimeoutMs ) ;
90+ // Clean CI runners often need substantially longer for the first iOS build than
91+ // for simulator control commands like boot/install/log collection.
92+ const buildTimeoutMs = parseTimeoutMs ( "IOS_BUILD_TIMEOUT_MS" , 10 * 60 * 1000 ) ;
9193const commandMaxBufferBytes = parsePositiveInt ( "IOS_COMMAND_MAX_BUFFER_BYTES" , 64 * 1024 * 1024 ) ;
9294const testTimeoutMs = Number ( process . env . IOS_TEST_TIMEOUT_MS || 2 * 60 * 1000 ) ;
9395const inactivityTimeoutMs = Number ( process . env . IOS_TEST_INACTIVITY_TIMEOUT_MS || 45 * 1000 ) ;
You can’t perform that action at this time.
0 commit comments