错误:没有这样的模块'RealmSwift'
导入RealmSwift
从Xcode构建项目时,它工作正常。从Jenkins构建它,给我上面提到的错误。
**建筑失败**
以下构建命令失败:
CompileSwift normal arm64
CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler
(2次失败) 构建步骤'Xcode'将构建标记为失败 完成:失败
我的Pod文件如下所示
target 'MyProject' do
use_frameworks!
# Pods for MyProject
pod 'Google/Analytics'
pod 'GoogleTagManager','~> 3.15.0'
pod 'RealmSwift','~> 2.1'
target 'MyProjectTests' do
# Pods for testing
end
target 'MyProjectUITests' do
# Pods for testing
end
end
答案 0 :(得分:1)
您可能没有对Pods
目录进行版本化。
您可以从.gitignore中删除Pods
,也可以在每个jenkins脚本中添加pod install
命令。