嘿,我想用Xcode机器人运行oclint。目前,我正在做的是将oclint作为构建后运行脚本运行。但是总是找不到配置配置文件。
下面是我正在做的事情
xcodebuild -target MyTarget -configuration Debug clean build | tee xcodebuild.log
oclint-xcodebuild
oclint-json-compilation-database -- -max-priority-1 99999 -max-priority-2 99999 -max-priority-3 99999这是我从xcode机器人得到的输出
[BEROR]Code Sign error: No matching provisioning profile found: Your build settings specify a provisioning profile with the UUID “6F753CA0-4435-40FF-B2F4-15B64D0F7AEE”, however, no such provisioning profile was found.
[BEROR]CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.1'尽管没有oclint的普通构建可以很好地工作。
发布于 2014-12-22 23:48:15
我遇到了这个错误,如果您将配置配置文件切换为Automatic,它将在Xcode Bot上成功构建。然而,这可能不适用于实际构建您的项目,但它应该让机器人为您工作,以验证它没有其他问题。
https://stackoverflow.com/questions/22939610
复制相似问题