如何清除 fastlane gym 输出目录?

How to clear Fastlane gym output directory?

我尝试使用 Fastlane 构建我的 iOS 应用程序。到目前为止有效,但仅适用于第一次构建。

如果我尝试重建项目,我会收到此错误消息:

xcodebuild: error: Existing file at -resultBundlePath "xxx/output/Jenkins.result"

这是我的快车道配置:

lane :jenkins do

setup_jenkins(
   force: '1',
   unlock_keychain: '1',
   keychain_path: "~/Library/Keychains/login.keychain",
   keychain_password: "xxx",
   code_signing_identity: "xxx"
)

clean_build_artifacts
clear_derived_data

gym(
  workspace: "Travel.xcworkspace",
  configuration: "Release",
  scheme: "Jenkins",
  silent: true,
  clean: true,
  export_method: "app-store"
)

end

清除输出目录缺少什么?

使用 delete workspace plugin 或 unix shell (rm -f) 或 windows shell (rmdir /s /q) 命令。