Class: Gym::BuildCommandGenerator

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

Overview

Responsible for building the fully working xcodebuild command

Class Method Summary collapse

Class Method Details

.actionsObject



49
50
51
52
53
54
55
56
57
# File 'lib/gym/generators/build_command_generator.rb', line 49

def actions
  config = Gym.config

  actions = []
  actions << :clean if config[:clean]
  actions << :archive

  actions
end

.archive_pathObject



115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/gym/generators/build_command_generator.rb', line 115

def archive_path
  Gym.cache[:archive_path] ||= Gym.config[:archive_path]
  unless Gym.cache[:archive_path]
    file_name = [Gym.config[:output_name], Time.now.strftime("%F %H.%M.%S")] # e.g. 2015-08-07 14.49.12
    Gym.cache[:archive_path] = File.join(build_path, file_name.join(" ") + ".xcarchive")
  end

  if File.extname(Gym.cache[:archive_path]) != ".xcarchive"
    Gym.cache[:archive_path] += ".xcarchive"
  end
  return Gym.cache[:archive_path]
end

.build_pathObject

The path where archive will be created



103
104
105
106
107
108
109
110
111
112
113
# File 'lib/gym/generators/build_command_generator.rb', line 103

def build_path
  unless Gym.cache[:build_path]
    Gym.cache[:build_path] = Gym.config[:build_path]
    unless Gym.cache[:build_path]
      day = Time.now.strftime("%F") # e.g. 2015-08-07
      Gym.cache[:build_path] = File.expand_path("~/Library/Developer/Xcode/Archives/#{day}/")
    end
    FileUtils.mkdir_p Gym.cache[:build_path]
  end
  Gym.cache[:build_path]
end

.generateObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/gym/generators/build_command_generator.rb', line 7

def generate
  parts = prefix
  parts << "xcodebuild"
  parts += options
  parts += actions
  parts += suffix
  parts += pipe

  parts
end

.optionsObject



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/gym/generators/build_command_generator.rb', line 31

def options
  config = Gym.config

  options = []
  options += project_path_array
  options << "-configuration '#{config[:configuration]}'" if config[:configuration]
  options << "-sdk '#{config[:sdk]}'" if config[:sdk]
  options << "-toolchain '#{config[:toolchain]}'" if config[:toolchain]
  options << "-destination '#{config[:destination]}'" if config[:destination]
  options << "-xcconfig '#{config[:xcconfig]}'" if config[:xcconfig]
  options << "-archivePath #{archive_path.shellescape}"
  options << "-derivedDataPath '#{config[:derived_data_path]}'" if config[:derived_data_path]
  options << "-resultBundlePath '#{result_bundle_path}'" if config[:result_bundle]
  options << config[:xcargs] if config[:xcargs]

  options
end

.pipeObject



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/gym/generators/build_command_generator.rb', line 65

def pipe
  pipe = []
  pipe << "| tee #{xcodebuild_log_path.shellescape}"
  unless Gym.config[:disable_xcpretty]
    formatter = Gym.config[:xcpretty_formatter]
    pipe << "| xcpretty"
    pipe << " --test" if Gym.config[:xcpretty_test_format]
    pipe << " --no-color" if Helper.colors_disabled?
    pipe << " --formatter " if formatter
    pipe << formatter if formatter
    report_output_junit = Gym.config[:xcpretty_report_junit]
    report_output_html = Gym.config[:xcpretty_report_html]
    report_output_json = Gym.config[:xcpretty_report_json]
    if report_output_junit
      pipe << " --report junit --output "
      pipe << report_output_junit
    elsif report_output_html
      pipe << " --report html --output "
      pipe << report_output_html
    elsif report_output_json
      pipe << " --report json-compilation-database --output "
      pipe << report_output_json
    end
  end
  pipe << "> /dev/null" if Gym.config[:suppress_xcode_output]

  pipe
end

.prefixObject



18
19
20
# File 'lib/gym/generators/build_command_generator.rb', line 18

def prefix
  ["set -o pipefail &&"]
end

.project_path_arrayArray

Path to the project or workspace as parameter This will also include the scheme (if given)

Returns:

  • (Array)

    The array with all the components to join



25
26
27
28
29
# File 'lib/gym/generators/build_command_generator.rb', line 25

def project_path_array
  proj = Gym.project.xcodebuild_parameters
  return proj if proj.count > 0
  UI.user_error!("No project/workspace found")
end

.result_bundle_pathObject



128
129
130
131
132
133
# File 'lib/gym/generators/build_command_generator.rb', line 128

def result_bundle_path
  unless Gym.cache[:result_bundle_path]
    Gym.cache[:result_bundle_path] = File.join(Gym.config[:output_directory], Gym.config[:output_name]) + ".result"
  end
  return Gym.cache[:result_bundle_path]
end

.suffixObject



59
60
61
62
63
# File 'lib/gym/generators/build_command_generator.rb', line 59

def suffix
  suffix = []
  suffix << "CODE_SIGN_IDENTITY=#{Gym.config[:codesigning_identity].shellescape}" if Gym.config[:codesigning_identity]
  suffix
end

.xcodebuild_log_pathObject



94
95
96
97
98
99
100
# File 'lib/gym/generators/build_command_generator.rb', line 94

def xcodebuild_log_path
  file_name = "#{Gym.project.app_name}-#{Gym.config[:scheme]}.log"
  containing = File.expand_path(Gym.config[:buildlog_path])
  FileUtils.mkdir_p(containing)

  return File.join(containing, file_name)
end