Skip to content

Commit 828284d

Browse files
authored
fix: set min iOS deployment target to 15.6 (#27)
* fix: set min iOS deployment target to 15.6 * increase timeout for iOS
1 parent d2954f6 commit 828284d

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144

145145
- name: Run iOS integration test
146146
env:
147-
AGENT_DEVICE_DAEMON_TIMEOUT_MS: "180000"
147+
AGENT_DEVICE_DAEMON_TIMEOUT_MS: "300000"
148148
run: node --test test/integration/ios.test.ts
149149

150150
- name: Upload iOS artifacts

ios-runner/AgentDeviceRunner/AgentDeviceRunner.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@
336336
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
337337
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
338338
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
339+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
339340
LD_RUNPATH_SEARCH_PATHS = (
340341
"$(inherited)",
341342
"@executable_path/Frameworks",
@@ -368,6 +369,7 @@
368369
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
369370
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
370371
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
372+
IPHONEOS_DEPLOYMENT_TARGET = 15.6;
371373
LD_RUNPATH_SEARCH_PATHS = (
372374
"$(inherited)",
373375
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)