Class: Fastlane::Actions::EnsureXcodeVersionAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/ensure_xcode_version.rb

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



78
79
80
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 78

def self.authors
  ["JaviSoto", "KrauseFx"]
end

.available_optionsObject



59
60
61
62
63
64
65
66
67
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 59

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :version,
                                 env_name: "FL_ENSURE_XCODE_VERSION",
                                 description: "Xcode version to verify that is selected",
                                 is_string: true,
                                 optional: true)
  ]
end

.categoryObject



88
89
90
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 88

def self.category
  :building
end

.descriptionObject



47
48
49
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 47

def self.description
  "Ensure the right version of Xcode is used"
end

.detailsObject



51
52
53
54
55
56
57
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 51

def self.details
  [
    "If building your app requires a specific version of Xcode, you can invoke this command before using gym.",
    "For example, to ensure that a beta version of Xcode is not accidentally selected to build, which would make uploading to TestFlight fail.",
    "You can either manually provide a specific version using `version: ` or you make use of the `.xcode-version` file."
  ].join("\n")
end

.example_codeObject



82
83
84
85
86
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 82

def self.example_code
  [
    'ensure_xcode_version(version: "7.2")'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



92
93
94
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 92

def self.is_supported?(platform)
  [:ios, :mac].include?(platform)
end

.outputObject



69
70
71
72
73
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 69

def self.output
  [
    ['FL_ENSURE_XCODE_VERSION', 'Xcode version to verify that is selected']
  ]
end

.return_valueObject



75
76
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 75

def self.return_value
end

.run(params) ⇒ Object



4
5
6
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
# File 'fastlane/lib/fastlane/actions/ensure_xcode_version.rb', line 4

def self.run(params)
  Actions.verify_gem!('xcode-install')
  required_version = params[:version]

  if required_version.to_s.length == 0
    # The user didn't provide an Xcode version, let's see
    # if the current project has a `.xcode-version` file
    #
    # The code below can be improved to also consider
    # the directory of the Xcode project
    xcode_version_paths = Dir.glob(".xcode-version")

    if xcode_version_paths.first
      UI.verbose("Loading required version from #{xcode_version_paths.first}")
      required_version = File.read(xcode_version_paths.first).strip
    else
      UI.user_error!("No version: provided when calling the `ensure_xcode_version` action")
    end
  end

  selected_version = sh("xcversion selected").match(/^Xcode (.*)$/)[1]

  begin
    selected_version = Gem::Version.new(selected_version)
    required_version = Gem::Version.new(required_version)
  rescue ArgumentError => ex
    UI.user_error!("Invalid version number provided, make sure it's valid: #{ex}")
  end

  if selected_version == required_version
    UI.success("Selected Xcode version is correct: #{selected_version}")
  else
    UI.message("Selected Xcode version is not correct: #{selected_version}. You expected #{required_version}.")
    UI.message("To correct this, use: `xcode_select(version: #{required_version})`.")

    UI.user_error!("Selected Xcode version doesn't match your requirement.\nExpected: Xcode #{required_version}\nActual: Xcode #{selected_version}\n")
  end
end