Skip to content

Commit

Permalink
ci(iOS): bump build version
Browse files Browse the repository at this point in the history
Due to an expired xcode login session on our CI, I noticed that the version
of xcode we were running was incompatible with the version of MacOS we were
running.

To rectify this, I updated xcode. Unfortunately, the latest versions of xcode
don't seem to have support for iOS 14.5 builds. Updating the deploy target to
the earliest supported version (16.3) fixes the issue.

Signed-off-by: Skyler Grey <[email protected]>
Change-Id: I0a6d4de2afda366019749dd1f6e0b51156c746be
  • Loading branch information
Minion3665 committed Dec 19, 2024
1 parent 71ba183 commit 5b0a288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/Mobile.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3787,7 +3787,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.3;
LOSRCDIR = "$(SOURCE_ROOT)/../lobuilddir-symlink";
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -3841,7 +3841,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 14.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.3;
LOSRCDIR = "$(SOURCE_ROOT)/../lobuilddir-symlink";
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
Expand Down

0 comments on commit 5b0a288

Please sign in to comment.