There are private sources in podfile, such as: source β git@xxx.xx.com/xxx-cocoapods-specs.git ', build always failed. The log is as follows:
Analyzing dependencies
Cloning spec repo xxx-cocoapods-specs.git from git@xxx.xx.com/xxx-cocoapods-specs.git
[!] Unable to add a source with url git@xxx.xx.com/xxx-cocoapods-specs.git named xxx-xx-cocoapods-specs.
You can try adding it manually in /Users/vagrant/.cocoapods/repos or via pod repo add.
e[ 31; 1mcommand failed, error: pod install failed: exit status
The reason is the private repo spec repository server git@xxx.xx.com, access it need username/password, I donβt know which step to set in Bitrise, look forward your reply to my email: chshua@icloud.com
In my case that private repo server only external supply login and password, On the development client machine, configuration below:
'machine sim.repo.xxx.com
login xxx
password xxxβ
So client machine able to connect through .netrc file, that avoid the need to input user name and password when connecting to private repo source in podfile build.
Now how to set bitrise.io to be similar to .netrc to make workflow run Cocoapods install run normally, Iβm looking forward to your solution. thank you.