-
Notifications
You must be signed in to change notification settings - Fork 292
/
Rakefile
202 lines (157 loc) · 5.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
require "rake/clean"
require "json"
require "fileutils"
#
### Helper Methods
#
def list_build_context
puts "##Project Root"
puts PROJECT_ROOT
puts "##Template filename"
puts TEMPLATE_FILENAME
puts "##Files to include in template"
puts TEMPLATE_FILES
end
def get_template_files
#folders to exclude from template via regex match
excluded_folders = ["xcuserdata", "build","tests","cocos2d-tests-android", "cocos2d-ui-tests", "UnitTests"]
Dir.chdir TEMPLATE_PROJECT do
list = Rake::FileList.new("./**/*", "./Source/libs/cocos2d-iphone/**/*") do |fl|
fl.exclude "*.git*"
fl.exclude "*.idea*"
fl.exclude "*.DS_Store"
excluded_folders.each { |folder| fl.exclude(/#{folder}/)}
end
list.resolve() #force path evaluation in the context of this directory (relative paths)
return list
end
end
def call_xctool command
reporter = "-reporter pretty"
if ENV["CIRCLE_CI"]
reporter = "-reporter plain -reporter junit:test_results.xml"
end
sh "xctool #{reporter} #{command}"
end
def get_artifact_name
return @artifact_name if @artifact_name
branch = `git rev-parse --abbrev-ref HEAD`.chomp
hash = `git rev-parse --short=10 HEAD`.chomp
date = Time.now.strftime("%d/%m/%Y-%H.%M")
@artifact_name = "#{branch}-#{hash}-#{date}".gsub(/[^0-9A-z.\-]/, '_')
end
def check_required_programs
`which xctool`
unless $?.success?
return "xctool not detected - run `brew install xctool`"
end
end
#
### Build Constants
#
PROJECT_ROOT=__FILE__.pathmap("%d")
TEMPLATE_FILENAME="PROJECTNAME"
TEMPLATE_PROJECT = File.join PROJECT_ROOT, "Support", "#{TEMPLATE_FILENAME}.spritebuilder"
TEMPLATE_FILES = get_template_files()
ABSOLUTE_TEMPLATE_FILES = TEMPLATE_FILES.map { |f| File.expand_path(File.join(TEMPLATE_PROJECT,f)) }
DERIVED_DATA_LOCATION="~/Library/Developer/Xcode/DerivedData"
DEFAULT_SB_VERSION=`cat VERSION`.chomp
DEFAULT_PRODUCT_NAME="SpriteBuilder"
BUILD_DIR=File.join PROJECT_ROOT, "Output"
#
### Rake tasks
#
directory "Generated"
directory BUILD_DIR
file "Generated/#{TEMPLATE_FILENAME}.zip" => ["Generated", *ABSOLUTE_TEMPLATE_FILES] do |task|
puts "Generating #{task.name()}..."
Dir.chdir TEMPLATE_PROJECT do
output_path = File.join(PROJECT_ROOT, task.name())
wrapped_filenames = TEMPLATE_FILES.map { |fn| "\"#{fn}\""}
#zip in increments to avoid exceeding bash argument list length
wrapped_filenames.each_slice(100) do |files|
`zip -q "#{output_path}" #{files.join(" ")}`
end
end
end
file "Generated/Version.txt" => "Generated" do |task|
puts "Generating #{task.name()}..."
version_info = {}
version_info["version"] = DEFAULT_SB_VERSION
version_info["revision"] = ENV["REVISION"] || `git rev-parse --short=10 HEAD`.chomp
f = File.open("Generated/Version.txt","w")
f.write JSON.pretty_generate(version_info)
f.close
end
file "Generated/cocos2d_version.txt" => 'SpriteBuilder/libs/cocos2d-iphone/VERSION' do |task|
puts "Generating #{task.name()}..."
`cp SpriteBuilder/libs/cocos2d-iphone/VERSION #{task.name()}`
end
def write_xcconfig
f = File.open("SpriteBuilder/Resources/Version.xcconfig","w")
f.write "//generated by rake script\nSB_VERSION=#{DEFAULT_SB_VERSION}"
f.close
end
task :build_requirements do
requirement_missing = check_required_programs
fail requirement_missing if requirement_missing
end
namespace :build do
desc "Build (only) SpriteBuilder's new project template"
task :template => ["Generated/#{TEMPLATE_FILENAME}.zip"] {}
desc "Generate all associated files and version info"
task :generated => [:template, "Generated/Version.txt","Generated/cocos2d_version.txt"] do
write_xcconfig
end
task :tests => [:generated,:build_requirements] do
call_xctool "-configuration Testing build-tests"
end
end
task :default => "build:generated"
desc "Run SpriteBuilder unit tests"
task :test => ["build:tests", :build_requirements] do
call_xctool "-configuration Testing run-tests"
end
namespace :package do
desc "Create SpriteBuilder.app + zip app and symbols"
task :app => :default do
call_xctool "TARGET_BUILD_DIR=#{BUILD_DIR} SB_VERSION='#{DEFAULT_SB_VERSION}' CONFIGURATION_BUILD_DIR=#{BUILD_DIR} VERSION=#{DEFAULT_SB_VERSION} -configuration Release build"
app, symbols = "NONE"
built_files = `find . -name SpriteBuilder.app`.chomp.split "\n"
app = built_files.max {|a,b| File.mtime(a) <=> File.mtime(b)}
symbols = "#{app}.dSYM"
versioned_app_name = "#{DEFAULT_PRODUCT_NAME}-#{DEFAULT_SB_VERSION}.app"
unless File.exists? app and File.exists? symbols
fail "Built products don't exist at #{app} and #{symbols}"
end
FileUtils.cp_r app, File.join(BUILD_DIR,versioned_app_name)
Dir.chdir BUILD_DIR do
`zip -q -r #{versioned_app_name}.zip #{versioned_app_name}`
`zip -q -r SpriteBuilder.app.dSYM.zip SpriteBuilder.app.dSYM`
end
end
desc "Create SpriteBuilder.xcarchive and zip"
task :archive do
call_xctool "TARGET_BUILD_DIR=#{BUILD_DIR} SB_VERSION='#{DEFAULT_SB_VERSION}' VERSION='#{DEFAULT_SB_VERSION}' -configuration Release archive -archivePath #{BUILD_DIR}/SpriteBuilder"
Dir.chdir BUILD_DIR do
sh "zip -r SpriteBuilder.xcarchive.zip SpriteBuilder.xcarchive"
end
end
end
desc "Build SpriteBuilder distribution"
task :package => [:clobber, BUILD_DIR, :build_requirements] do
#force generation of a new Version.txt
Rake::Task["build:generated"].invoke
Rake::Task["package:app"].invoke
Rake::Task["clean"].invoke
Rake::Task["package:archive"].invoke
if ENV["CIRCLE_CI"]
Dir.chdir BUILD_DIR do
sh "echo Copying artifacts.."
sh "cp *.zip $CIRCLE_ARTIFACTS"
end
end
end
build_dirs = `find . -type d -iname build`.split
CLEAN.include *build_dirs
CLOBBER.include *["Generated", "Build"]