Fastlane existing file in resultBundlePath

When I run my lowercase line, it fails with

xcodebuild: error: Existing file at -resultBundlePath "/Users/dude/workspace/testMe/output/testMe.result"

My actions in the strip

  • setup_jenkins
  • clean_build_artifacts
  • increment_build_number
  • match
  • gym
  • Pilot
  • reset_git_repo

I know that I can just add an action to delete this file, but most likely I'm doing something wrong.

+4
source share
1 answer

I had the same problem until I looked at the Fastlane code and found a workaround. Installation result_bundlein falsehelped in my case, for example

desc "Submit a new build to App Store"
lane :production do
    setup_jenkins(result_bundle: false)
    gym(...)
    deliver(...)
end
+3
source

All Articles