ios - Jenkins cannot find pods -
/usr/local/share/jenkins_agent/workspace/ios myproject/myproject/user.h:9:9: fatal error: 'realm/realm.h' file not found #import <realm/realm.h>
why can see files not finding pods? clueless.
edit: because output folder wasn't in correct part of repo , pods creating own output folder, not recognising each other. created output folder both read :)
likely jenkins hasn't pulled down pods. if haven't, add script before xcode plugin runs in jenkins in it:
#!/usr/bin/env bash source ~/.bash_profile pod repo update pod install
Comments
Post a Comment