Xcode Plugin for Jenkins

I am trying to configure CI for my iOS project using Jenkins and the Xcode plugin. This project uses cocoapods .

When I try to build a project, I see the following message on the console output.

The following build commands failed:
    PhaseScriptExecution "Copy Pods Resources" "/Users/Shared/Jenkins/Library/Developer/Xcode/DerivedData/MyProjectName-aigdarcpcvxsuigtchghvivjocka/Build/Intermediates/MyProjectName.build/Ad Hoc-iphoneos/MyProjectName.build/Script-995B1F2BEF504DDDA6A68507.sh"

I checked Jenkins user permissions to write to these folders - they are ok.

What could be the reason? Any thoughts are very welcome. Thanks.

+4
source share
1 answer

Try running 'pod install' before the xcode build part

-one
source

Source: https://habr.com/ru/post/1502925/


All Articles