Xcode 可以直接从源代码管理运行而无需安装吗
我正在管理一个构建实验室,并且有多个产品/分支可以提供服务,并且我希望我的构建机器不专门用于任何一种产品/分支。
我想要的场景是,源和构建它所需的所有工具都被签入源代码管理,并通过脚本预先与一些准备/环境设置同步和构建。
这对于 Visual Studio 和许多其他工具来说是非常可行的。用Xcode可以吗?有没有人得到这样的场景工作?
I am managing a build lab and have several products/branches to provide service to and I would like my build machines not to be specialized to any one product/branch.
The scenario I would like to have is that souce and all tools needed to build it are checked into source control and just sync and build with some prep/env setup before hand via script.
This is very doable with Visual Studio and many other tools. Is it possible with Xcode? Has anyone gotten a scenario like this to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
某些系统组件可能需要共享。由于这是一种非典型场景,因此文档不容易获得。我建议您在 Apple 维护的 Xcode 用户邮件列表上询问,因为您可能会得到更确定的答案。
Some system components may need to be shared. Since this is such an atypical scenario, documentation will not be readily available. I would suggest asking on the Xcode-users mailing list that Apple maintains, as you may get a more certain answer.
我怀疑这是否可能。我知道有两种可能的方法。
首先,我们在项目中也遵循这一点:
xcodebuild
。第二种方法是 与 MAC OS X 服务器持续集成。
以防万一您找到了您正在寻找的确切系统配置对于,请在这里发布答案以启发我们。
I doubt if this possible. There are 2 possible ways I know of.
First, which we also follow in our project:
xcodebuild
.Second way is the continuous integration with MAC OS X server.
Just in case you found out the exact system config you are looking for, please post an answer here to enlighten us as well.