forked from Quick/Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
73 lines (61 loc) · 2.66 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
def run(env = {}, command)
system(env, command) or raise "RAKE TASK FAILED: #{command}"
end
def has_xcodebuild
system "which xcodebuild >/dev/null"
end
def xcode_action
ENV["XCODE_ACTION"] || "build-for-testing test-without-building"
end
namespace "podspec" do
desc "Run lint for podspec"
task :lint do
run "bundle exec pod lib lint"
end
end
namespace "test" do
desc "Run unit tests for all iOS targets"
task :ios do |t|
run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick -destination 'generic/platform=iOS' OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean build | xcpretty"
run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick -destination 'platform=iOS Simulator,name=iPhone 8' OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean #{xcode_action} | xcpretty"
end
desc "Run unit tests for all tvOS targets"
task :tvos do |t|
run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick -destination 'generic/platform=tvOS' OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean build | xcpretty"
run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick -destination 'platform=tvOS Simulator,name=Apple TV' OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean #{xcode_action} | xcpretty"
end
desc "Run unit tests for all macOS targets"
task :macos do |t|
run "set -o pipefail && xcodebuild -workspace Quick.xcworkspace -scheme Quick OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean #{xcode_action} | xcpretty"
end
desc "Run unit tests for all macOS targets using static linking"
task :macos_static do |t|
run "set -o pipefail && MACH_O_TYPE=staticlib xcodebuild -workspace Quick.xcworkspace -scheme Quick OTHER_SWIFT_FLAGS='$(inherited) -suppress-warnings' clean #{xcode_action} | xcpretty"
end
desc "Run unit tests for the current platform built by the Swift Package Manager"
task :swiftpm do |t|
run "swift package clean && swift test -Xswiftc -suppress-warnings"
end
end
namespace "templates" do
install_dir = File.expand_path("~/Library/Developer/Xcode/Templates/File Templates/Quick")
src_dir = File.expand_path("../Quick Templates", __FILE__)
desc "Install Quick templates"
task :install do
if File.exists? install_dir
raise "RAKE TASK FAILED: Quick templates are already installed at #{install_dir}"
else
mkdir_p install_dir
cp_r src_dir, install_dir
end
end
desc "Uninstall Quick templates"
task :uninstall do
rm_rf install_dir
end
end
if has_xcodebuild then
task default: ["test:ios", "test:tvos", "test:macos"]
else
task default: ["test:swiftpm"]
end