forked from Automattic/simplenote-macos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
319 lines (270 loc) · 7.94 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
SWIFTLINT_VERSION="0.27.0"
XCODE_WORKSPACE="Simplenote.xcworkspace"
XCODE_SCHEME="Simplenote"
XCODE_CONFIGURATION="Debug"
require 'fileutils'
require 'tmpdir'
require 'rake/clean'
require 'yaml'
require 'digest'
PROJECT_DIR = File.expand_path(File.dirname(__FILE__))
task default: %w[test]
desc "Install required dependencies"
task :dependencies => %w[dependencies:check]
namespace :dependencies do
task :check => %w[bundler:check bundle:check pod:check lint:check]
namespace :bundler do
task :check do
unless command?("bundler")
Rake::Task["dependencies:bundler:install"].invoke
end
end
task :install do
puts "Bundler not found in PATH, installing to vendor"
ENV['GEM_HOME'] = File.join(PROJECT_DIR, 'vendor', 'gems')
ENV['PATH'] = File.join(PROJECT_DIR, 'vendor', 'gems', 'bin') + ":#{ENV['PATH']}"
sh "gem install bundler" unless command?("bundler")
end
CLOBBER << "vendor/gems"
end
namespace :bundle do
task :check do
sh "bundle check --path=${BUNDLE_PATH:-vendor/bundle} > /dev/null", verbose: false do |ok, res|
next if ok
# bundle check exits with a non zero code if install is needed
dependency_failed("Bundler")
Rake::Task["dependencies:bundle:install"].invoke
end
end
task :install do
fold("install.bundler") do
sh "bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}"
end
end
CLOBBER << "vendor/bundle"
CLOBBER << ".bundle"
end
namespace :pod do
task :check do
unless podfile_locked? && lockfiles_match?
dependency_failed("CocoaPods")
Rake::Task["dependencies:pod:install"].invoke
end
end
task :install do
fold("install.cocoapds") do
pod %w[install]
end
end
task :clean do
fold("clean.cocoapds") do
FileUtils.rm_rf('Pods')
end
end
CLOBBER << "Pods"
end
namespace :lint do
task :check do
if swiftlint_needs_install
dependency_failed("SwiftLint")
Rake::Task["dependencies:lint:install"].invoke
end
end
task :install do
fold("install.swiftlint") do
puts "Installing SwiftLint #{SWIFTLINT_VERSION} into #{swiftlint_path}"
Dir.mktmpdir do |tmpdir|
# Try first using a binary release
zipfile = "#{tmpdir}/swiftlint-#{SWIFTLINT_VERSION}.zip"
sh "curl --fail --location -o #{zipfile} https://github.com/realm/SwiftLint/releases/download/#{SWIFTLINT_VERSION}/portable_swiftlint.zip || true"
if File.exists?(zipfile)
extracted_dir = "#{tmpdir}/swiftlint-#{SWIFTLINT_VERSION}"
sh "unzip #{zipfile} -d #{extracted_dir}"
FileUtils.mkdir_p("#{swiftlint_path}/bin")
FileUtils.cp("#{extracted_dir}/swiftlint", "#{swiftlint_path}/bin/swiftlint")
else
sh "git clone --quiet https://github.com/realm/SwiftLint.git #{tmpdir}"
Dir.chdir(tmpdir) do
sh "git checkout --quiet #{SWIFTLINT_VERSION}"
sh "git submodule --quiet update --init --recursive"
FileUtils.remove_entry_secure(swiftlint_path) if Dir.exist?(swiftlint_path)
FileUtils.mkdir_p(swiftlint_path)
sh "make prefix_install PREFIX='#{swiftlint_path}'"
end
end
end
end
end
CLOBBER << "vendor/swiftlint"
end
end
CLOBBER << "vendor"
desc "Build #{XCODE_SCHEME}"
task :build => [:dependencies] do
xcodebuild(:build)
end
desc "Profile build #{XCODE_SCHEME}"
task :buildprofile => [:dependencies] do
ENV["verbose"] = "1"
xcodebuild(:build, "OTHER_SWIFT_FLAGS='-Xfrontend -debug-time-compilation -Xfrontend -debug-time-expression-type-checking'")
end
task :timed_build => [:clean] do
require 'benchmark'
time = Benchmark.measure do
Rake::Task["build"].invoke
end
puts "CPU Time: #{time.total}"
puts "Wall Time: #{time.real}"
end
desc "Run test suite"
task :test => [:dependencies] do
xcodebuild(:build, :test)
end
desc "Remove any temporary products"
task :clean do
xcodebuild(:clean)
end
desc "Checks the source for style errors"
task :lint => %w[dependencies:lint:check] do
swiftlint %w[lint --quiet]
end
namespace :lint do
desc "Automatically corrects style errors where possible"
task :autocorrect => %w[dependencies:lint:check] do
swiftlint %w[autocorrect]
end
end
namespace :git do
hooks = %w[pre-commit post-checkout post-merge]
desc "Install git hooks"
task :install_hooks do
hooks.each do |hook|
target = hook_target(hook)
source = hook_source(hook)
backup = hook_backup(hook)
next if File.symlink?(target) and File.readlink(target) == source
next if File.file?(target) and File.identical?(target, source)
if File.exist?(target)
puts "Existing hook for #{hook}. Creating backup at #{target} -> #{backup}"
FileUtils.mv(target, backup, :force => true)
end
FileUtils.ln_s(source, target)
puts "Installed #{hook} hook"
end
end
desc "Uninstall git hooks"
task :uninstall_hooks do
hooks.each do |hook|
target = hook_target(hook)
source = hook_source(hook)
backup = hook_backup(hook)
next unless File.symlink?(target) and File.readlink(target) == source
puts "Removing hook for #{hook}"
File.unlink(target)
if File.exist?(backup)
puts "Restoring hook for #{hook} from backup"
FileUtils.mv(backup, target)
end
end
end
def hook_target(hook)
".git/hooks/#{hook}"
end
def hook_source(hook)
"../../Scripts/hooks/#{hook}"
end
def hook_backup(hook)
"#{hook_target(hook)}.bak"
end
end
namespace :git do
task :pre_commit => %[dependencies:lint:check] do
begin
swiftlint %w[lint --quiet --strict]
rescue
exit $?.exitstatus
end
end
task :post_merge do
check_dependencies_hook
end
task :post_checkout do
check_dependencies_hook
end
end
desc "Open the project in Xcode"
task :xcode => [:dependencies] do
sh "open #{XCODE_WORKSPACE}"
end
def fold(label, &block)
puts "travis_fold:start:#{label}" if is_travis?
yield
puts "travis_fold:end:#{label}" if is_travis?
end
def is_travis?
return ENV["TRAVIS"] != nil
end
def pod(args)
args = %w[bundle exec pod] + args
sh(*args)
end
def lockfiles_match?
File.file?('Pods/Manifest.lock') && FileUtils.compare_file('Podfile.lock', 'Pods/Manifest.lock')
end
def podfile_locked?
podfile_checksum = Digest::SHA1.file("Podfile")
lockfile_checksum = YAML.load(File.read("Podfile.lock"))["PODFILE CHECKSUM"]
podfile_checksum == lockfile_checksum
end
def swiftlint_path
"#{PROJECT_DIR}/vendor/swiftlint"
end
def swiftlint(args)
args = [swiftlint_bin] + args
sh(*args)
end
def swiftlint_bin
"#{swiftlint_path}/bin/swiftlint"
end
def swiftlint_needs_install
return true unless File.exist?(swiftlint_bin)
installed_version = `"#{swiftlint_bin}" version`.chomp
return (installed_version != SWIFTLINT_VERSION)
end
def xcodebuild(*build_cmds)
cmd = "xcodebuild"
cmd += " -destination 'platform=iOS Simulator,name=iPhone 6s'"
cmd += " -sdk iphonesimulator"
cmd += " -workspace #{XCODE_WORKSPACE}"
cmd += " -scheme #{XCODE_SCHEME}"
cmd += " -configuration #{xcode_configuration}"
cmd += " "
cmd += build_cmds.map(&:to_s).join(" ")
cmd += " | bundle exec xcpretty -f `bundle exec xcpretty-travis-formatter` && exit ${PIPESTATUS[0]}" unless ENV['verbose']
sh(cmd)
end
def xcode_configuration
ENV['XCODE_CONFIGURATION'] || XCODE_CONFIGURATION
end
def command?(command)
system("which #{command} > /dev/null 2>&1")
end
def dependency_failed(component)
msg = "#{component} dependencies missing or outdated. "
if ENV['DRY_RUN']
msg += "Run rake dependencies to install them."
fail msg
else
msg += "Installing..."
puts msg
end
end
def check_dependencies_hook
ENV['DRY_RUN'] = "1"
begin
Rake::Task['dependencies'].invoke
rescue Exception => e
puts e.message
exit 1
end
end