require "fourflusher" module Jxedt class XcodebuildCommand PLATFORM_OF_SDK = { "iphonesimulator" => "iOS", "iphoneos" => "iOS", "appletvsimulator" => "tvOS", "appletvos" => "tvOS", "watchsimulator" => "watchOS", "watchos" => "watchOS" }.freeze DESTINATION_OF_SDK = { "iphoneos" => "\"generic/platform=iOS\"", "iphonesimulator" => "\"generic/platform=iOS Simulator\"" }.freeze def self.xcodebuild(options) sdk = options[:sdk] || "iphoneos" targets = options[:targets] || [options[:target]] platform = PLATFORM_OF_SDK[sdk] cmd = ["xcodebuild"] cmd << "-project" << options[:sandbox].project_path.realdirpath.shellescape targets.each { |target| cmd << "-target" << target } cmd << "-configuration" << options[:configuration].shellescape cmd << "-sdk" << sdk if DESTINATION_OF_SDK.key?(sdk) cmd << "-destination" << DESTINATION_OF_SDK[sdk] else unless platform.nil? cmd << Fourflusher::SimControl.new.destination(:oldest, platform, options[:deployment_target]) end end cmd += options[:args] if options[:args] cmd += "clean" if options[:clean_build] cmd << "build" if options[:log_path].nil? cmd << "2>&1" else FileUtils.mkdir_p(File.dirname(options[:log_path])) cmd << "> #{options[:log_path].shellescape}" end cmd = cmd.join(" ") Pod::UI.puts_indented "$ #{cmd}" unless Jxedt.config.silent_build? log = `#{cmd}` return if $?.exitstatus.zero? # rubocop:disable Style/SpecialGlobalVars begin require "xcpretty" # TODO (thuyen): Revise this dependency # use xcpretty to print build log # 64 represent command invalid. http://www.manpagez.com/man/3/sysexits/ printer = XCPretty::Printer.new({:formatter => XCPretty::Simple, :colorize => "auto"}) log.each_line do |line| printer.pretty_print(line) end rescue Pod::UI.puts log.red ensure raise "Fail to build targets: #{targets}" end end end end