xcode - How can I disable Automatically managing signing option in jenkins -
i'm making ci using jenkins , xcode plugin. failed log that
check dependencies unity-iphone has conflicting provisioning settings. project automatically signed, provisioning profile <> has been manually specified. set provisioning profile value "automatic" in build settings editor, or switch manual signing in project editor. code signing required product type 'application' in sdk 'ios 10.2'
** build failed **
the following build commands failed: check dependencies (1 failure) build step 'xcode' marked build failure finished: failure
so searched solution. , found solutions. first. setting custom xcodebuild argument in xcode plugin in jenkins. made argument below.
"provisioningstyle = manual" "provisioning_profile_specifier=<<name>>" "development_team=<<team>>" "iphoneos_deployment_target=8.0"
but failed same log.
second. used execute shell in jenkins below
sed -i '' 's/provisioningstyle = automatic; /provisioningstyle = manual; /' project.xcodeproj/project.pbxproj
bu failed log below.
[test] $ /bin/sh -xe /var/folders/c8/mryr3pj14kv7b2yffxm1b6200000gn/t/hudson7046742057279779985.sh + sed -i '' 's/provisioningstyle = automatic; /provisioningstyle = manual; /' project.xcodeproj/project.pbxproj sed: 1: "s/provisioningstyle = ...": unterminated substitute pattern build step 'execute shell' marked build failure finished: failure
may used script worng or there solution?. meat jenkins first , xocde first. can explain solution , give me details?
Comments
Post a Comment