Reputation: 121
The iOS project that am working on,builds perfectly in Xcode but fails to build in Azure pipeline. GoogleAppMeasurement and FirebaseAnalytics third-party frameworks are used and are
installed using cocoapods. The shell scripts in CP Embed pods Frameworks generate Target Support Files, during Pod installation, which the azure
pipeline is not able to access and hence throws error in the Xcode build task.
Things that I tried below:-
Upvotes: 2
Views: 507
Reputation: 1498
Judging from your screenshot, when it runs in Azure, it looks like the PODS_ROOT environment variable is not set.
Upvotes: 0