Skip to content

Commit

Permalink
Tweak signing settings for CI.
Browse files Browse the repository at this point in the history
Recent runs of the github actions failed for iOS due to signing. Odds are it's a
chance to a newer Xcode. This should force adhoc signing which should be fine
since it's just for the simulator.
  • Loading branch information
thomasvl committed Nov 14, 2024
1 parent bba4954 commit 93c6f5d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions GTMiPhone.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,12 @@
TargetAttributes = {
8B82CEF51D9C17DE007182AA = {
CreatedOnToolsVersion = 8.0;
DevelopmentTeam = "";
ProvisioningStyle = Automatic;
};
8B82CF211D9C1C7D007182AA = {
CreatedOnToolsVersion = 8.0;
DevelopmentTeam = "";
ProvisioningStyle = Automatic;
TestTargetID = 1D6058900D05DD3D006BFB54;
};
Expand Down Expand Up @@ -621,7 +623,7 @@
"ARCHS[sdk=iphoneos*]" = "$(ARCHS_STANDARD)";
"ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)";
CLANG_ENABLE_OBJC_WEAK = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_IDENTITY = "-";
DEAD_CODE_STRIPPING = YES;
GTM_HOST_OTHER_LDFLAGS = "-ObjC -lz";
INFOPLIST_FILE = "UnitTest-Info.plist";
Expand All @@ -635,7 +637,7 @@
baseConfigurationReference = 8B82CF581D9C24D9007182AA /* Unittest.xcconfig */;
buildSettings = {
CLANG_ENABLE_OBJC_WEAK = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_IDENTITY = "-";
DEAD_CODE_STRIPPING = YES;
GTM_HOST_OTHER_LDFLAGS = "-ObjC -lz";
INFOPLIST_FILE = "UnitTest-Info.plist";
Expand Down

0 comments on commit 93c6f5d

Please sign in to comment.