forked from LoopKit/LoopWorkspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastfile
More file actions
279 lines (233 loc) · 8.49 KB
/
Copy pathFastfile
File metadata and controls
279 lines (233 loc) · 8.49 KB
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
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
default_platform(:ios)
TEAMID = ENV["TEAMID"]
GH_PAT = ENV["GH_PAT"]
GITHUB_WORKSPACE = ENV["GITHUB_WORKSPACE"]
GITHUB_REPOSITORY_OWNER = ENV["GITHUB_REPOSITORY_OWNER"]
FASTLANE_KEY_ID = ENV["FASTLANE_KEY_ID"]
FASTLANE_ISSUER_ID = ENV["FASTLANE_ISSUER_ID"]
FASTLANE_KEY = ENV["FASTLANE_KEY"]
DEVICE_NAME = ENV["DEVICE_NAME"]
DEVICE_ID = ENV["DEVICE_ID"]
ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "120"
platform :ios do
desc "Build Loop"
lane :build_loop do
setup_ci if ENV['CI']
update_project_team(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
teamid: "#{TEAMID}"
)
api_key = app_store_connect_api_key(
key_id: "#{FASTLANE_KEY_ID}",
issuer_id: "#{FASTLANE_ISSUER_ID}",
key_content: "#{FASTLANE_KEY}"
)
previous_build_number = latest_testflight_build_number(
app_identifier: "com.#{TEAMID}.loopkit.Loop",
api_key: api_key,
)
current_build_number = previous_build_number + 1
increment_build_number(
xcodeproj: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
build_number: current_build_number
)
match(
type: "appstore",
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),
app_identifier: [
"com.#{TEAMID}.loopkit.Loop",
"com.#{TEAMID}.loopkit.Loop.statuswidget",
"com.#{TEAMID}.loopkit.Loop.LoopWatch.watchkitextension",
"com.#{TEAMID}.loopkit.Loop.LoopWatch",
"com.#{TEAMID}.loopkit.Loop.Loop-Intent-Extension",
"com.#{TEAMID}.loopkit.Loop.LoopWidgetExtension"
]
)
previous_build_number = latest_testflight_build_number(
app_identifier: "com.#{TEAMID}.loopkit.Loop",
api_key: api_key,
)
current_build_number = previous_build_number + 1
increment_build_number(
xcodeproj: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
build_number: current_build_number
)
mapping = Actions.lane_context[
SharedValues::MATCH_PROVISIONING_PROFILE_MAPPING
]
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
profile_name: mapping["com.#{TEAMID}.loopkit.Loop"],
code_sign_identity: "iPhone Distribution",
targets: ["Loop"]
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
code_sign_identity: "iPhone Distribution",
targets: ["LoopCore", "LoopCore-watchOS", "LoopUI"]
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
profile_name: mapping["com.#{TEAMID}.loopkit.Loop.statuswidget"],
code_sign_identity: "iPhone Distribution",
targets: ["Loop Status Extension"]
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
profile_name: mapping["com.#{TEAMID}.loopkit.Loop.LoopWatch.watchkitextension"],
code_sign_identity: "iPhone Distribution",
targets: ["WatchApp Extension"]
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
profile_name: mapping["com.#{TEAMID}.loopkit.Loop.LoopWatch"],
code_sign_identity: "iPhone Distribution",
targets: ["WatchApp"]
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
profile_name: mapping["com.#{TEAMID}.loopkit.Loop.Loop-Intent-Extension"],
code_sign_identity: "iPhone Distribution",
targets: ["Loop Intent Extension"]
)
update_code_signing_settings(
path: "#{GITHUB_WORKSPACE}/Loop/Loop.xcodeproj",
profile_name: mapping["com.#{TEAMID}.loopkit.Loop.LoopWidgetExtension"],
code_sign_identity: "iPhone Distribution",
targets: ["Loop Widget Extension"]
)
gym(
export_method: "app-store",
scheme: "LoopWorkspace",
output_name: "Loop.ipa",
configuration: "Release",
destination: 'generic/platform=iOS',
buildlog_path: 'buildlog'
)
copy_artifacts(
target_path: "artifacts",
artifacts: ["*.mobileprovision", "*.ipa", "*.dSYM.zip"]
)
end
desc "Push to TestFlight"
lane :release do
api_key = app_store_connect_api_key(
key_id: "#{FASTLANE_KEY_ID}",
issuer_id: "#{FASTLANE_ISSUER_ID}",
key_content: "#{FASTLANE_KEY}"
)
upload_to_testflight(
api_key: api_key,
skip_submission: false,
ipa: "Loop.ipa",
skip_waiting_for_build_processing: true,
)
end
desc "Provision Identifiers and Certificates"
lane :identifiers do
setup_ci if ENV['CI']
ENV["MATCH_READONLY"] = false.to_s
app_store_connect_api_key(
key_id: "#{FASTLANE_KEY_ID}",
issuer_id: "#{FASTLANE_ISSUER_ID}",
key_content: "#{FASTLANE_KEY}"
)
def configure_bundle_id(name, identifier, capabilities)
bundle_id = Spaceship::ConnectAPI::BundleId.find(identifier) || Spaceship::ConnectAPI::BundleId.create(name: name, identifier: identifier)
capabilities.each { |capability|
bundle_id.create_capability(capability)
}
end
configure_bundle_id("Loop", "com.#{TEAMID}.loopkit.Loop", [
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS,
Spaceship::ConnectAPI::BundleIdCapability::Type::HEALTHKIT,
Spaceship::ConnectAPI::BundleIdCapability::Type::PUSH_NOTIFICATIONS,
Spaceship::ConnectAPI::BundleIdCapability::Type::SIRIKIT,
Spaceship::ConnectAPI::BundleIdCapability::Type::USERNOTIFICATIONS_TIMESENSITIVE,
Spaceship::ConnectAPI::BundleIdCapability::Type::NFC_TAG_READING
])
configure_bundle_id("Loop Intent Extension", "com.#{TEAMID}.loopkit.Loop.Loop-Intent-Extension", [
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
])
configure_bundle_id("Loop Status Extension", "com.#{TEAMID}.loopkit.Loop.statuswidget", [
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
])
configure_bundle_id("WatchApp", "com.#{TEAMID}.loopkit.Loop.LoopWatch", [])
configure_bundle_id("WatchApp Extension", "com.#{TEAMID}.loopkit.Loop.LoopWatch.watchkitextension", [
Spaceship::ConnectAPI::BundleIdCapability::Type::HEALTHKIT,
Spaceship::ConnectAPI::BundleIdCapability::Type::SIRIKIT
])
configure_bundle_id("Loop Widget Extension", "com.#{TEAMID}.loopkit.Loop.LoopWidgetExtension", [
Spaceship::ConnectAPI::BundleIdCapability::Type::APP_GROUPS
])
end
desc "Provision Certificates"
lane :certs do
setup_ci if ENV['CI']
ENV["MATCH_READONLY"] = false.to_s
app_store_connect_api_key(
key_id: "#{FASTLANE_KEY_ID}",
issuer_id: "#{FASTLANE_ISSUER_ID}",
key_content: "#{FASTLANE_KEY}"
)
match(
type: "appstore",
force: true,
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),
app_identifier: [
"com.#{TEAMID}.loopkit.Loop",
"com.#{TEAMID}.loopkit.Loop.statuswidget",
"com.#{TEAMID}.loopkit.Loop.LoopWatch.watchkitextension",
"com.#{TEAMID}.loopkit.Loop.LoopWatch",
"com.#{TEAMID}.loopkit.Loop.Loop-Intent-Extension",
"com.#{TEAMID}.loopkit.Loop.LoopWidgetExtension",
]
)
end
desc "Validate Secrets"
lane :validate_secrets do
setup_ci if ENV['CI']
ENV["MATCH_READONLY"] = true.to_s
app_store_connect_api_key(
key_id: "#{FASTLANE_KEY_ID}",
issuer_id: "#{FASTLANE_ISSUER_ID}",
key_content: "#{FASTLANE_KEY}"
)
def find_bundle_id(identifier)
bundle_id = Spaceship::ConnectAPI::BundleId.find(identifier)
end
find_bundle_id("com.#{TEAMID}.loopkit.Loop")
match(
type: "appstore",
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}"),
app_identifier: [],
)
end
desc "Nuke Certs"
lane :nuke_certs do
setup_ci if ENV['CI']
ENV["MATCH_READONLY"] = false.to_s
app_store_connect_api_key(
key_id: "#{FASTLANE_KEY_ID}",
issuer_id: "#{FASTLANE_ISSUER_ID}",
key_content: "#{FASTLANE_KEY}"
)
match_nuke(
type: "appstore",
team_id: "#{TEAMID}",
skip_confirmation: true,
git_basic_authorization: Base64.strict_encode64("#{GITHUB_REPOSITORY_OWNER}:#{GH_PAT}")
)
end
end