Added -nosign option for iOS to optionally skip codesigning (#1776)
This allows non-simulator builds on CI servers without setting up team-id/provisioning-profile/etc. It also allows signing using a different method, if desired. Co-Authored-By: mcagabe19@users.noreply.github.com
This commit is contained in:
@@ -30,6 +30,13 @@ class IOSHelper
|
||||
else
|
||||
{
|
||||
commands.push("build");
|
||||
if (project.targetFlags.exists("nosign"))
|
||||
{
|
||||
commands.push("CODE_SIGN_IDENTITY=\"\"");
|
||||
commands.push("CODE_SIGNING_REQUIRED=\"NO\"");
|
||||
commands.push("CODE_SIGN_ENTITLEMENTS=\"\"");
|
||||
commands.push("CODE_SIGNING_ALLOWED=\"NO\"");
|
||||
}
|
||||
}
|
||||
|
||||
if (additionalArguments != null)
|
||||
|
||||
Reference in New Issue
Block a user