class Gym::BuildCommandGenerator

Responsible for building the fully working xcodebuild command

Public Class Methods

archive_path() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 124
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_path() click to toggle source

The path where archive will be created

# File gym/lib/gym/generators/build_command_generator.rb, line 116
def build_path
  unless Gym.cache[:build_path]
    Gym.cache[:build_path] = Gym.config[:build_path]
    FileUtils.mkdir_p(Gym.cache[:build_path])
  end
  Gym.cache[:build_path]
end
buildactions() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 51
def buildactions
  config = Gym.config

  buildactions = []
  buildactions << :clean if config[:clean]
  buildactions << :build if config[:skip_archive]
  buildactions << :archive unless config[:skip_archive]

  buildactions
end
generate() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 8
def generate
  parts = prefix
  parts << "xcodebuild"
  parts += options
  parts += buildactions
  parts += setting
  parts += pipe

  parts
end
options() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 32
def options
  config = Gym.config

  options = []
  options += project_path_array
  options << "-sdk '#{config[:sdk]}'" if config[:sdk]
  options << "-toolchain '#{config[:toolchain]}'" if config[:toolchain]
  options << "-destination '#{config[:destination]}'" if config[:destination]
  options << "-archivePath #{archive_path.shellescape}" unless config[:skip_archive]
  options << "-resultBundlePath '#{result_bundle_path}'" if config[:result_bundle]
  if config[:use_system_scm] && !options.include?("-scmProvider system")
    options << "-scmProvider system"
  end
  options << config[:xcargs] if config[:xcargs]
  options << "OTHER_SWIFT_FLAGS=\"-Xfrontend -debug-time-function-bodies\"" if config[:analyze_build_time]

  options
end
pipe() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 72
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
    pipe << "--utf" if Gym.config[:xcpretty_utf]
    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.shellescape
    elsif report_output_html
      pipe << " --report html --output "
      pipe << report_output_html.shellescape
    elsif report_output_json
      pipe << " --report json-compilation-database --output "
      pipe << report_output_json.shellescape
    end
  end
  pipe << "> /dev/null" if Gym.config[:suppress_xcode_output]
  pipe
end
post_build() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 101
def post_build
  commands = []
  commands << %{grep -E '^[0-9.]+ms' #{xcodebuild_log_path.shellescape} | grep -vE '^0\.[0-9]' | sort -nr > culprits.txt} if Gym.config[:analyze_build_time]
  commands
end
prefix() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 19
def prefix
  ["set -o pipefail &&"]
end
project_path_array() click to toggle source

Path to the project or workspace as parameter This will also include the scheme (if given) @return [Array] The array with all the components to join

# File gym/lib/gym/generators/build_command_generator.rb, line 26
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_path() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 137
def result_bundle_path
  unless Gym.cache[:result_bundle_path]
    path = Gym.config[:result_bundle_path]
    path ||= File.join(Gym.config[:output_directory], Gym.config[:output_name] + ".result")
    if File.directory?(path)
      FileUtils.remove_dir(path)
    end
    Gym.cache[:result_bundle_path] = path
  end
  return Gym.cache[:result_bundle_path]
end
setting() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 62
def setting
  setting = []
  if Gym.config[:skip_codesigning]
    setting << "CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS='' CODE_SIGNING_ALLOWED=NO"
  elsif Gym.config[:codesigning_identity]
    setting << "CODE_SIGN_IDENTITY=#{Gym.config[:codesigning_identity].shellescape}"
  end
  setting
end
xcodebuild_log_path() click to toggle source
# File gym/lib/gym/generators/build_command_generator.rb, line 107
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