swift 使用SPM插件后无法在Travis上运行构建版本

eyh26e7m  于 2023-01-08  发布在  Swift
关注(0)|答案(1)|浏览(132)

运行包含任何SPM插件(如SwiftGenPlugin)的构建时,出现以下错误:

The following build commands failed:
    Validate plug-in “SwiftGenPlugin” in package “swiftgenplugin”

构建链接:https://app.travis-ci.com/github/mukesh-mt/SwiftGenTest/jobs/592013507
示例项目:https://github.com/mukesh-mt/SwiftGenTest

7y4bm7vi

7y4bm7vi1#

我能够通过在xcodebuild中使用-skipPackagePluginValidation选项来解决这个问题。
有了快车道,你可以在健身房命令中使用--xcargs "-skipPackagePluginValidation"选项通过它
参见此构建版本https://app.travis-ci.com/github/mukesh-mt/SwiftGenTest/builds/259435024

相关问题