fastlane-old/pilot

Return status of iTunes Transporter was 1

Closed this issue · 8 comments

Hi,
What is this error coming from ?

[16:26:57]: Transporter transfer failed.
[16:26:57]:
[16:26:57]:
[16:26:57]: Return status of iTunes Transporter was 1:
[16:26:57]: Return status of iTunes Transporter was 1:
[16:26:57]: Variable Dump:
[16:26:57]: {:DEFAULT_PLATFORM=>:ios, :PLATFORM_NAME=>:ios, :LANE_NAME=>"ios beta", :SIGH_PROFILE_PATH=>"/Users/franck1/dev/driver-ios-ng/AppStore_uk.co.mochii.mobileprovision", :SIGH_PROFILE_PATHS=>["/Users/franck1/dev/driver-ios-ng/AppStore_uk.co.mochii.mobileprovision"], :SIGH_UDID=>"82785aed-b35c-42a3-931b-27b15557b5a3", :SIGH_PROFILE_TYPE=>"app-store", :IPA_OUTPUT_PATH=>"/Users/franck1/dev/driver-ios-ng/App.ipa", :DSYM_OUTPUT_PATH=>"/Users/franck1/dev/driver-ios-ng/App.app.dSYM.zip", :XCODEBUILD_ARCHIVE=>"/Users/franck1/Library/Developer/Xcode/Archives/2016-01-13/App 2016-01-13 16.22.04.xcarchive"}
[16:26:57]: Error uploading ipa file, more information see above

+------+-------------------------------------+-------------+
|                     fastlane summary                     |
+------+-------------------------------------+-------------+
| Step | Action                              | Time (in s) |
+------+-------------------------------------+-------------+
| 1    | Verifying required fastlane version | 0           |
| 2    | default_platform                    | 0           |
| 3    | sigh                                | 34          |
| 4    | gym                                 | 92          |
| 5    | pilot                               | 206         |
+------+-------------------------------------+-------------+

[16:26:57]: fastlane finished with errors
Successfully submitted a crash report. If this is a problem with one of the tools specifically,
please submit an issue on GitHub and attach the following number to it: '434ee63d2e0c5bfb07743322ba4252cb'

@vpolouchkine i don't think i have issues with the firewall since it works on some targets. but fails on this one.

Gotcha. Could you provide some details on your targets and your Fastfile?

@vpolouchkine sure, this is My Fasfile:

# Customise this file, documentation can be found here:
# https://github.com/KrauseFx/fastlane/tree/master/docs
# All available actions: https://github.com/KrauseFx/fastlane/blob/master/docs/Actions.md
# can also be listed using the `fastlane actions` command

# Change the syntax highlighting to Ruby
# All lines starting with a # are ignored when running `fastlane`

# By default, fastlane will send which actions are used
# No personal data is shared, more information on https://github.com/fastlane/enhancer
# Uncomment the following line to opt out
# opt_out_usage

# If you want to automatically update fastlane if a new version is available:
# update_fastlane

# This is the minimum version number required.
# Update this, if you use features of a newer version
fastlane_version "1.46.1"

default_platform :ios


platform :ios do
  before_all do
    # ENV["SLACK_URL"] = "https://hooks.slack.com/services/..."
    #cocoapods

    #increment_build_number

    # xctool # run the tests of your app
  end

  desc "Runs all the tests"
  lane :test do
    sh "rm -rf screenshots"
    snapshot
  end

  desc "Submit a new Beta Build to Apple TestFlight"
  desc "This will also make sure the profile is up to date"
  lane :beta do
    sigh
    gym(scheme: "generic") # Build your app - more options available
    pilot

    # sh "your_script.sh"
    # You can also use other beta testing services here
  end

  desc "Deploy a new version to the App Store"
  lane :deploy do
    sh "rm -rf screenshots"
    snapshot
    sigh
    gym(scheme: "generic") # Build your app - more options available
    deliver(force: true)
    # frameit
  end

  desc "Deliver to the App Store"
  lane :deliver do
 #   sh "rm -rf screenshots"
 #   snapshot
    sigh
    gym(scheme: "generic") # Build your app - more options available
    deliver(force: true)
    # frameit
  end

  # You can define as many lanes as you want

  after_all do |lane|
    # This block is called, only if the executed lane was successful

    # slack(
    #   message: "Successfully deployed new App Update."
    # )
  end

  error do |lane, exception|
    # slack(
    #   message: exception.message,
    #   success: false
    # )
  end
end



# More information about multiple platforms in fastlane: https://github.com/KrauseFx/fastlane/blob/master/docs/Platforms.md
# All available actions: https://github.com/KrauseFx/fastlane/blob/master/docs/Actions.md

What details do you need on the targets ? Actually, I'm using twice the same target, but i'm running script to replaces its assets. (I'm building "branded apps")
I'm able to run and archive the apps in xcode for both "targets" without using fastlane, but the beta lane fails on one of them.

hey @frranck are you still experiencing this issue? apologies for the lag time. what version of pilot do you have installed?

@ohwutup Just tried with the latest version, it's OK now. Thanks

Perfect, thanks for letting us know @frranck

This issue was migrated to fastlane/fastlane#3256. Please post all further comments there.

fastlane is now a mono repo, you can read more about the change in our blog post. All tools are now available in the fastlane main repo 🚀