-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
49 lines (40 loc) · 1.09 KB
/
Rakefile
1
2
3
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
42
43
44
45
46
47
48
49
require "rubygems"
require "colorize"
require "bundler/setup"
def unity_path
"/Applications/Unity/Unity.app/Contents/MacOS/Unity"
end
namespace :build do
desc "Build app for device testing"
task :build_device_app do
command = "rm -rf CalabashUnityServer/Builds/iOS"
puts command
`#{command}`
command = "#{unity_path} -quit -batchmode -executeMethod AutoBuilder.PerformiOSBuild"
puts command
`#{command}`
if $?.to_i != 0
puts "Failed to export iOS project".red
exit(0)
end
command = "cd CalabashUnityServer/Builds/iOS && xcodebuild"
puts command
`#{command}`
end
desc "Build app for simulator testing"
task :build_app do
command = "rm -rf CalabashUnityServer/Builds/iOS"
puts command
`#{command}`
command = "#{unity_path} -quit -batchmode -executeMethod AutoBuilder.PerformiOSBuildSimulator"
puts command
`#{command}`
if $?.to_i != 0
puts "Failed to export iOS project".red
exit(0)
end
command = "cd CalabashUnityServer/Builds/iOS && xcodebuild"
puts command
`#{command}`
end
end