Reputation: 2902
Getting following error when running builds having any SPM plugin like SwiftGenPlugin:
The following build commands failed:
Validate plug-in “SwiftGenPlugin” in package “swiftgenplugin”
Build link: https://app.travis-ci.com/github/mukesh-mt/SwiftGenTest/jobs/592013507
Sample project: https://github.com/mukesh-mt/SwiftGenTest
Upvotes: 4
Views: 1060
Reputation: 2902
I was able to solve this issue by using -skipPackagePluginValidation
option in xcodebuild
.
With fastlane you can pass it with --xcargs "-skipPackagePluginValidation"
option in gym command
See this build https://app.travis-ci.com/github/mukesh-mt/SwiftGenTest/builds/259435024
Upvotes: 4