Fastfile 2.48 KB
Newer Older
1 2 3 4 5
# Prevent Fastlane from overwriting README.md
skip_docs

default_platform(:ios)

6 7 8 9 10 11 12 13 14 15
def suppress_output
  original_stdout, original_stderr = $stdout.clone, $stderr.clone
  $stderr.reopen File.new('/dev/null', 'w')
  $stdout.reopen File.new('/dev/null', 'w')
  yield
ensure
  $stdout.reopen original_stdout
  $stderr.reopen original_stderr
end

16 17 18 19 20 21
# This should be run after running
# flutter build ios --release --no-codesign
# to build the app using the Flutter toolchain. This lane is meant to only
# rebuild the app by:
# 1- Signing using the publishing credentials; and
# 2- xcodebuild with archive option
22
platform :ios do
23
  desc 'Push a new release to TestFlight'
24
  lane :build_and_deploy_testflight do |options|
25 26 27
    # Doesn't do anything when not on Travis.
    setup_travis

28 29 30 31
    # Relative to this file.
    raw_version = File.read('../../../../version')
    puts "Building and deploying version #{raw_version}..."

32 33 34 35 36 37 38
    update_app_identifier(
      plist_path: 'Runner/Info.plist',
      # Let the checked-in bundle ID be different so users don't collide on
      # provisioning profile creation when building locally.
      app_identifier: 'io.flutter.demo.gallery'
    )

39
    increment_version_number(
40 41
      # Only major, minor, patch digits and dots.
      version_number: /\d+\.\d+\.\d+/.match(raw_version)[0]
42 43
    )

44 45 46 47 48 49 50 51 52 53 54
    puts 'Retrieving signing certificates and profiles...'
    # Stop fastlane from echoing back PUBLISHING_MATCH_CERTIFICATE_REPO var.
    suppress_output {
      # Retrieves all the necessary certs and provisioning profiles.
      sync_code_signing(
        git_url: ENV['PUBLISHING_MATCH_CERTIFICATE_REPO'],
        type: 'appstore',
        readonly: true
      )
    }
    puts 'Certificates and profiles installed'
55 56 57 58 59 60

    # Modify the Xcode project to use the new team and profile.
    # It will put the git state to dirty but Travis will be wiped after
    # then run session.
    disable_automatic_code_signing
    update_project_provisioning(
61 62 63 64
      xcodeproj: 'Runner.xcodeproj',
      target_filter: 'Runner',
      build_configuration: 'Release',
      profile: ENV['sigh_io.flutter.demo.gallery_appstore_profile-path'],
65 66 67 68
    )

    # Build and archive the app again.
    build_ios_app(
69 70 71
      workspace: 'Runner.xcworkspace',
      scheme: 'Runner',
      export_method: 'app-store',
72
      # Verify that the right signing identity is used for publishing.
73
      codesigning_identity: 'iPhone Distribution: Store Ladd (S8QB4VV633)',
74 75
    )

76
    if options[:upload]
77 78
      upload_to_testflight
    end
79 80
  end
end