Class: Gym::ErrorHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/gym/error_handler.rb

Overview

This classes methods are called when something goes wrong in the building process

Class Method Summary collapse

Class Method Details

.handle_build_error(output) ⇒ Object

This method should raise an exception in any case, as the return code indicated a failed build

Parameters:

  • The (String)

    output of the errored build



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/gym/error_handler.rb', line 7

def handle_build_error(output)
  # The order of the handling below is import
  case output
  when /Your build settings specify a provisioning profile with the UUID/
    print "Invalid code signing settings"
    print "Your project defines a provisioning profile which doesn't exist on your local machine"
    print "You can use sigh (https://github.com/KrauseFx/sigh) to download and install the provisioning profile"
    print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
  when /Provisioning profile does not match bundle identifier/
    print "Invalid code signing settings"
    print "Your project defines a provisioning profile that doesn't match the bundle identifier of your app"
    print "Make sure you use the correct provisioning profile for this app"
    print "Take a look at the ouptput above for more information"
    print "You can follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
  when /provisioning profiles matching the bundle identifier .(.*)./ # the . around the (.*) are for the strange "
    print "You don't have the provisioning profile for '#{$1}' installed on the local machine"
    print "Make sure you have the profile on this computer and it's properly installed"
    print "You can use sigh (https://github.com/KrauseFx/sigh) to download and install the provisioning profile"
    print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
  when /matching the bundle identifier .(.*). were found/ # the . around the (.*) are for the strange "
    print "You don't have a provisioning profile for the bundle identifier '#{$1}' installed on the local machine"
    print "Make sure you have the profile on this computer and it's properly installed"
    print "You can use sigh (https://github.com/KrauseFx/sigh) to download and install the provisioning profile"
    print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"

  # Insert more code signing specific errors here
  when /code signing is required/
    print "Your project settings define invalid code signing settings"
    print "To generate an ipa file you need to enable code signing for your project"
    print "Additionally make sure you have a code signing identity set"
    print "Follow this guide: https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
  when /US\-ASCII/
    print "Your shell environment is not correctly configured"
    print "Instead of UTF-8 your shell uses US-ASCII"
    print "Please add the following to your '~/.bashrc':"
    print ""
    print "       export LANG=en_US.UTF-8"
    print "       export LANGUAGE=en_US.UTF-8"
    print "       export LC_ALL=en_US.UTF-8"
    print ""
    print "You'll have to restart your shell session after updating the file."
    print "If you are using zshell or another shell, make sure to edit the correct bash file."
    print "For more information visit this stackoverflow answer:"
    print "https://stackoverflow.com/a/17031697/445598"
  end
  raise "Error building the application - see the log above".red
end

.handle_empty_archiveObject



89
90
91
92
93
94
95
96
# File 'lib/gym/error_handler.rb', line 89

def handle_empty_archive
  print "The generated archive is invalid, this can have various reasons:"
  print "Usually it's caused by the `Skip Install` option in Xcode, set it to `NO`"
  print "For more information visit https://developer.apple.com/library/ios/technotes/tn2215/_index.html"
  print "Also, make sure to have a valid code signing identity and provisioning profile installed"
  print "Follow this guide to setup code signing https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md"
  raise "Archive invalid"
end

.handle_package_error(output) ⇒ Object

This method should raise an exception in any case, as the return code indicated a failed build

Parameters:

  • The (Array)

    output of the errored build (line by line)



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/gym/error_handler.rb', line 57

def handle_package_error(output)
  case output
  when /single\-bundle/
    print "Your project does not contain a single–bundle application or contains multiple products"
    print "Please read the documentation provided by Apple: https://developer.apple.com/library/ios/technotes/tn2215/_index.html"
  when /no signing identity matches '(.*)'/
    print "Could not find code signing identity '#{$1}'"
    print "Make sure the name of the code signing identity is correct"
    print "and it matches a locally installed code signing identity"
    print "You can pass the name of the code signing identity using the"
    print "`codesigning_identity` option"
  when /no provisioning profile matches '(.*)'/
    print "Could not find provisioning profile with the name '#{$1}'"
    print "Make sure the name of the provisioning profile is correct"
    print "and it matches a locally installed profile"
  when /mismatch between specified provisioning profile and signing identity/
    print "Mismatch between provisioning profile and code signing identity"
    print "This means, the specified provisioning profile was not created using"
    print "the specified certificate."
    print "Run cert and sigh before gym to make sure to have all signing resources ready"
  # insert more specific code signing errors here
  when /Codesign check fails/
    print "A general code signing error occurred. Make sure you passed a valid"
    print "provisioning profile and code signing identity."
  when /expected one of \{\}/
    print "It seems like you ran into this radar"
    print "https://openradar.appspot.com/radar?id=4952000420642816"
    print "You can temporary use the :use_legacy_build_api option to get the build to work again"
  end
  raise "Error packaging up the application".red
end