使用 jenkins 构建本地 iphone 项目,无需源代码控制
我想使用 jenkins 构建一个没有源代码控制的本地 iPhone 项目。然而,我在文档或网络搜索方面没有任何运气。任何帮助将不胜感激。
I want to build an local iPhone project without source control using jenkins. However I havent had any luck with the documentation or searching the web. Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用源代码管理,但是:
选择“添加构建步骤” -> “执行Shell”并添加以下内容
然后您还可以更改 jenkins 作业中的“定期构建”设置,使其每小时运行一次或其他时间
如果您期望 xcodebuild 工具对您的工作进行协同设计并且 jenkins 在本地运行,那么它可能会在“构建”过程中的某个时刻弹出一个钥匙串窗口。
You should be using source control BUT:
Select "Add A Build Step" -> "Execute Shell" and add the following
You can then also change the "Build Periodically" setting in the jenkins job to have it run every hour or whatever
If you're expecting the xcodebuild tool to codesign your work and jenkins is running locally then it'll probably pop up a keychain window at some point during the "build" process.