Skip to content

Commit a5f82d7

Browse files
authored
Merge pull request #4015 from wmathurin/fix/add-ios17-authflowtester
Lower AuthFlowTester deployment target to iOS 17.0 and add iOS 17 to UI nightly tests
2 parents daf0b35 + 0366867 commit a5f82d7

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/ui-test-nightly.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
ios: [^26, ^18]
13+
ios: [^26, ^18, ^17]
1414
include:
1515
- ios: ^26
1616
xcode: ^26
1717
- ios: ^18
1818
xcode: ^16
19+
- ios: ^17
20+
xcode: ^16
1921
uses: ./.github/workflows/reusable-ui-test-workflow.yaml
2022
with:
2123
ios: ${{ matrix.ios }}

native/SampleApps/AuthFlowTester/AuthFlowTester.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
CODE_SIGN_STYLE = Automatic;
360360
CURRENT_PROJECT_VERSION = 1;
361361
GENERATE_INFOPLIST_FILE = YES;
362-
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
362+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
363363
MARKETING_VERSION = 1.0;
364364
PRODUCT_BUNDLE_IDENTIFIER = com.salesforce.mobilesdk.AuthFlowTesterUITests;
365365
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -379,7 +379,7 @@
379379
CODE_SIGN_STYLE = Automatic;
380380
CURRENT_PROJECT_VERSION = 1;
381381
GENERATE_INFOPLIST_FILE = YES;
382-
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
382+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
383383
MARKETING_VERSION = 1.0;
384384
PRODUCT_BUNDLE_IDENTIFIER = com.salesforce.mobilesdk.AuthFlowTesterUITests;
385385
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -530,7 +530,7 @@
530530
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
531531
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
532532
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortraitUpsideDown";
533-
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
533+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
534534
LD_RUNPATH_SEARCH_PATHS = (
535535
"$(inherited)",
536536
"@executable_path/Frameworks",
@@ -560,7 +560,7 @@
560560
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
561561
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
562562
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortraitUpsideDown";
563-
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
563+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
564564
LD_RUNPATH_SEARCH_PATHS = (
565565
"$(inherited)",
566566
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)