-
Notifications
You must be signed in to change notification settings - Fork 601
/
Rakefile
106 lines (89 loc) · 3.07 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
# Build & test OHHTTPStubs lib from the CLI
desc 'Build an iOS scheme'
task :ios, [:scheme, :device, :ios_version, :action, :additional_args] do |_,args|
destination = "name=#{args.device},OS=#{args.ios_version}"
build("OHHTTPStubs #{args.scheme}", "iphonesimulator", destination, args.action, args.additional_args)
end
desc 'Build an OSX scheme'
task :osx, [:scheme, :arch, :action, :additional_args] do |_,args|
destination = "arch=#{args.arch}"
build("OHHTTPStubs #{args.scheme}", "macosx", destination, args.action, args.additional_args)
end
desc 'Build a tvOS scheme'
task :tvos, [:scheme, :tvos_version, :action, :additional_args] do |_,args|
destination = "name=Apple TV,OS=#{args.tvos_version}"
build("OHHTTPStubs #{args.scheme}", "appletvsimulator", destination, args.action, args.additional_args)
end
desc 'Test Using Swift Package Manager'
task :spm_test do
sh 'swift test -Xcc -DOHHTTPSTUBS_SKIP_REDIRECT_TESTS'
end
desc 'List installed simulators'
task :simlist do
sh 'xcrun simctl list'
end
desc 'Build Example Project'
task :build_example_apps do
build_pod_example("Examples/ObjC")
build_pod_example("Examples/Swift")
build_project("Examples/SwiftPackageManager")
end
desc 'Build Carthage Frameworks'
task :build_carthage_frameworks, [:platform, :swift_version] do |_,args|
puts "Args were: #{args}"
carthage_build(args.platform, args.swift_version)
end
# Updates Local Pods, Then Builds
def build_pod_example(dir)
sh "pod install --project-directory=#{dir} --verbose"
build_workspace(dir)
end
# Builds The Example Workspace
def build_workspace(dir)
sh "xcodebuild -workspace #{dir}/OHHTTPStubsDemo.xcworkspace -scheme OHHTTPStubsDemo build CODE_SIGNING_ALLOWED=NO"
end
# Builds the Example Project
def build_project(dir)
sh "xcodebuild -project #{dir}/OHHTTPStubsDemo.xcodeproj -scheme OHHTTPStubsDemo build CODE_SIGNING_ALLOWED=NO"
end
# Builds platform using Carthage
def carthage_build(platform, swift_version)
xcconfig = "/tmp/tmp.xcconfig"
config_contents = "SWIFT_VERSION=#{swift_version}"
sh "echo #{config_contents} > #{xcconfig} && XCODE_XCCONFIG_FILE=#{xcconfig} carthage build --platform #{platform} --no-skip-current"
end
desc 'Run all travis env tasks locally'
task :travis do
require 'YAML'
travis = YAML.load_file('.travis.yml')
travis['matrix']['include'].each do |matrix|
env = matrix['env']
arg = env.split('=')[1..-1].join('=')
puts "\n" + ('-'*80) + "\n\n"
sh "rake #{arg}"
end
end
# Build the xcodebuild command and run it
def build(scheme, sdk, destination, action, additional_args)
puts <<-ANNOUNCE
=============================
| Action : #{action}
| SDK : #{sdk}
| Scheme : "#{scheme}"
| Destination: #{destination}
| args : "#{additional_args}"
=============================
ANNOUNCE
cmd = %W(
xcodebuild
-workspace OHHTTPStubs.xcworkspace
-scheme "#{scheme}"
-sdk #{sdk}
-configuration Debug
ONLY_ACTIVE_ARCH=NO
#{additional_args}
-destination '#{destination}'
clean #{action}
)
sh "set -o pipefail && #{cmd.join(' ')} | xcpretty -c"
end