mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-23 20:31:17 +08:00
rake task receives the signal and it is aborted. And, GDB process remains as zombie process. So, rake task ignores the SIGINT if debugger is running
180 lines
6.4 KiB
Ruby
180 lines
6.4 KiB
Ruby
# Copyright (c) 2012, HipByte SPRL and contributors
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
|
# list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
require 'motion/project/app'
|
|
|
|
App = Motion::Project::App
|
|
App.template = :ios
|
|
|
|
require 'motion/project'
|
|
require 'motion/project/template/ios/config'
|
|
require 'motion/project/template/ios/builder'
|
|
|
|
desc "Build the project, then run the simulator"
|
|
task :default => :simulator
|
|
|
|
desc "Build everything"
|
|
task :build => ['build:simulator', 'build:device']
|
|
|
|
namespace :build do
|
|
desc "Build the simulator version"
|
|
task :simulator do
|
|
App.build('iPhoneSimulator')
|
|
end
|
|
|
|
desc "Build the device version"
|
|
task :device do
|
|
App.build('iPhoneOS')
|
|
App.codesign('iPhoneOS')
|
|
end
|
|
end
|
|
|
|
desc "Run the simulator"
|
|
task :simulator do
|
|
unless ENV["skip_build"]
|
|
Rake::Task["build:simulator"].invoke
|
|
end
|
|
app = App.config.app_bundle('iPhoneSimulator')
|
|
target = ENV['target'] || App.config.sdk_version
|
|
|
|
if ENV['TMUX']
|
|
tmux_default_command = `tmux show-options -g default-command`.strip
|
|
unless tmux_default_command.include?("reattach-to-user-namespace")
|
|
App.warn(<<END
|
|
|
|
It appears you are using tmux without 'reattach-to-user-namespace', the simulator might not work properly. You can either disable tmux or run the following commands:
|
|
|
|
$ brew install reattach-to-user-namespace
|
|
$ echo 'set-option -g default-command "reattach-to-user-namespace -l $SHELL"' >> ~/.tmux.conf
|
|
|
|
END
|
|
)
|
|
end
|
|
end
|
|
|
|
# Cleanup the simulator application sandbox, to avoid having old resource files there.
|
|
if ENV['clean']
|
|
sim_apps = File.expand_path("~/Library/Application Support/iPhone Simulator/#{target}/Applications")
|
|
Dir.glob("#{sim_apps}/**/*.app").each do |app_bundle|
|
|
if File.basename(app_bundle) == File.basename(app)
|
|
rm_rf File.dirname(app_bundle)
|
|
break
|
|
end
|
|
end
|
|
end
|
|
|
|
# Prepare the device family.
|
|
family_int =
|
|
if family = ENV['device_family']
|
|
App.config.device_family_int(family.downcase.intern)
|
|
else
|
|
App.config.device_family_ints[0]
|
|
end
|
|
retina = ENV['retina']
|
|
|
|
# Configure the SimulateDevice variable (the only way to specify if we want to run in retina mode or not).
|
|
simulate_device = App.config.device_family_string(family_int, target, retina)
|
|
default_simulator = `/usr/bin/defaults read com.apple.iphonesimulator "SimulateDevice"`.strip
|
|
if default_simulator != simulate_device && default_simulator != "'#{simulate_device}'"
|
|
system("/usr/bin/killall \"iPhone Simulator\" >& /dev/null")
|
|
system("/usr/bin/defaults write com.apple.iphonesimulator \"SimulateDevice\" \"'#{simulate_device}'\"")
|
|
end
|
|
|
|
# Launch the simulator.
|
|
xcode = App.config.xcode_dir
|
|
env = "DYLD_FRAMEWORK_PATH=\"#{xcode}/../Frameworks\":\"#{xcode}/../OtherFrameworks\""
|
|
env << ' SIM_SPEC_MODE=1' if App.config.spec_mode
|
|
sim = File.join(App.config.bindir, 'ios/sim')
|
|
debug = (ENV['debug'] ? 1 : (App.config.spec_mode ? '0' : '2'))
|
|
app_args = (ENV['args'] or '')
|
|
App.info 'Simulate', app
|
|
at_exit { system("stty echo") } if $stdout.tty? # Just in case the simulator launcher crashes and leaves the terminal without echo.
|
|
Signal.trap(:INT) { } if ENV['debug']
|
|
system "#{env} #{sim} #{debug} #{family_int} #{target} \"#{xcode}\" \"#{app}\" #{app_args}"
|
|
if $?.exitstatus != 0
|
|
$stderr.puts '=' * 80
|
|
$stderr.puts <<EOS
|
|
The application crashed. A crash report file may have been generated by the
|
|
system, use `rake crashlog' to open it. Use `rake debug=1' to restart the app
|
|
in the debugger.
|
|
EOS
|
|
$stderr.puts '=' * 80
|
|
end
|
|
end
|
|
|
|
desc "Create an .ipa archive"
|
|
task :archive => ['build:device'] do
|
|
App.archive
|
|
end
|
|
|
|
namespace :archive do
|
|
desc "Create an .ipa archive for distribution (AppStore)"
|
|
task :distribution do
|
|
App.config_without_setup.build_mode = :release
|
|
App.config_without_setup.distribution_mode = true
|
|
Rake::Task["archive"].invoke
|
|
end
|
|
end
|
|
|
|
desc "Same as 'spec:simulator'"
|
|
task :spec => ['spec:simulator']
|
|
|
|
namespace :spec do
|
|
desc "Run the test/spec suite on the simulator"
|
|
task :simulator do
|
|
App.config_without_setup.spec_mode = true
|
|
Rake::Task["simulator"].invoke
|
|
end
|
|
|
|
desc "Run the test/spec suite on the device"
|
|
task :device do
|
|
App.config_without_setup.spec_mode = true
|
|
ENV['debug'] ||= '1'
|
|
Rake::Task["device"].invoke
|
|
end
|
|
end
|
|
|
|
desc "Deploy on the device"
|
|
task :device => :archive do
|
|
App.info 'Deploy', App.config.archive
|
|
device_id = (ENV['id'] or App.config.device_id)
|
|
unless App.config.provisioned_devices.include?(device_id)
|
|
App.fail "Device ID `#{device_id}' not provisioned in profile `#{App.config.provisioning_profile}'"
|
|
end
|
|
env = "XCODE_DIR=\"#{App.config.xcode_dir}\""
|
|
deploy = File.join(App.config.bindir, 'ios/deploy')
|
|
flags = Rake.application.options.trace ? '-d' : ''
|
|
Signal.trap(:INT) { } if ENV['debug']
|
|
sh "#{env} #{deploy} #{flags} \"#{device_id}\" \"#{App.config.archive}\""
|
|
end
|
|
|
|
desc "Create a .a static library"
|
|
task :static do
|
|
libs = %w{iPhoneSimulator iPhoneOS}.map do |platform|
|
|
'"' + App.build(platform, :static => true) + '"'
|
|
end
|
|
fat_lib = File.join(App.config.build_dir, App.config.name + '-universal.a')
|
|
App.info 'Create', fat_lib
|
|
sh "/usr/bin/lipo -create #{libs.join(' ')} -output \"#{fat_lib}\""
|
|
end
|