fastlane-plugin-mobile_tools 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/mobile_tools/actions/create_xcframework_action.rb +284 -70
- data/lib/fastlane/plugin/mobile_tools/actions/validate_xcframework_action.rb +105 -0
- data/lib/fastlane/plugin/mobile_tools/helper/create_xcframework_helper.rb +28 -0
- data/lib/fastlane/plugin/mobile_tools/helper/validate_xcframework_helper.rb +142 -0
- data/lib/fastlane/plugin/mobile_tools/version.rb +1 -1
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b8d5653d4f3f3b10d79db61208cd9f31b0fd9a30bd048303897e246d349120b
|
4
|
+
data.tar.gz: ece53b29c54071b28807c757c0c1157ae53846e09463e719b1c2ec3d4ee9b7d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a6d6a9d84e45d400121a5bb9fa9b4c99bffa221656fce87c80813db1acfdff46edc589139afe1e02289156fbfb9677aecba7580416dff37e5c8c285b9e023a9
|
7
|
+
data.tar.gz: c0bb6fb42a97af43acdb7c2a6e39e2fa3edea90737fa0b4520b4fb395d0b2364fb87adb5f9fc59c117140b213d2db884afb93d186957b435ffbba23f403ddf4b
|
@@ -26,6 +26,11 @@ module Fastlane
|
|
26
26
|
end
|
27
27
|
|
28
28
|
create_xcframework(params)
|
29
|
+
|
30
|
+
remove_module_reference(params)
|
31
|
+
sign_xcframework(params)
|
32
|
+
zip_xcframework(params)
|
33
|
+
delete_xcframework(params)
|
29
34
|
|
30
35
|
copy_dSYMs(params)
|
31
36
|
|
@@ -33,19 +38,28 @@ module Fastlane
|
|
33
38
|
|
34
39
|
clean(params)
|
35
40
|
|
36
|
-
|
41
|
+
|
42
|
+
|
43
|
+
provide_shared_values(params)
|
37
44
|
else
|
38
45
|
UI.important('xcframework can be produced only using Xcode 11 and above')
|
39
46
|
end
|
40
47
|
end
|
41
48
|
|
42
|
-
def self.provide_shared_values
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
+
def self.provide_shared_values(params)
|
50
|
+
frameworks = params[:frameworks] || [nil]
|
51
|
+
frameworks.each do |framework|
|
52
|
+
xcframework_path = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
53
|
+
dsyms_path = framework ? @xchelper.framework_dSYMs_path(framework) : @xchelper.xcframework_dSYMs_path
|
54
|
+
bcsymbolmaps_path = framework ? @xchelper.framework_BCSymbolMaps_path(framework) : @xchelper.xcframework_BCSymbolMaps_path
|
55
|
+
|
56
|
+
Actions.lane_context[SharedValues::XCFRAMEWORK_OUTPUT_PATH] = File.expand_path(xcframework_path)
|
57
|
+
ENV[SharedValues::XCFRAMEWORK_OUTPUT_PATH.to_s] = File.expand_path(xcframework_path)
|
58
|
+
Actions.lane_context[SharedValues::XCFRAMEWORK_DSYM_OUTPUT_PATH] = File.expand_path(dsyms_path)
|
59
|
+
ENV[SharedValues::XCFRAMEWORK_DSYM_OUTPUT_PATH.to_s] = File.expand_path(dsyms_path)
|
60
|
+
Actions.lane_context[SharedValues::XCFRAMEWORK_BCSYMBOLMAPS_OUTPUT_PATH] = File.expand_path(bcsymbolmaps_path)
|
61
|
+
ENV[SharedValues::XCFRAMEWORK_BCSYMBOLMAPS_OUTPUT_PATH.to_s] = File.expand_path(bcsymbolmaps_path)
|
62
|
+
end
|
49
63
|
end
|
50
64
|
|
51
65
|
def self.clean(params)
|
@@ -53,73 +67,232 @@ module Fastlane
|
|
53
67
|
end
|
54
68
|
|
55
69
|
def self.create_xcframework(params)
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
70
|
+
UI.message("params: #{params}")
|
71
|
+
|
72
|
+
if params[:frameworks]
|
73
|
+
params[:frameworks].each do |framework|
|
74
|
+
UI.message("▸ Creating xcframework for #{framework}")
|
75
|
+
xcframework = @xchelper.get_xcframework_path(framework)
|
76
|
+
UI.message("▸ Creating xcframework for #{framework} at path: #{xcframework}")
|
77
|
+
begin
|
78
|
+
FileUtils.rm_rf(xcframework) if File.exist?(xcframework)
|
79
|
+
|
80
|
+
arguments = ['-create-xcframework']
|
81
|
+
arguments << '-allow-internal-distribution' if params[:allow_internal_distribution]
|
82
|
+
|
83
|
+
params[:destinations].each_with_index do |_, index|
|
84
|
+
arguments << "-framework #{@xchelper.get_xcarchive_framework_path(index, framework)}"
|
85
|
+
arguments << debug_symbols(index: index, params: params, framework: framework)
|
86
|
+
end
|
87
|
+
arguments << "-output #{xcframework}"
|
88
|
+
UI.message("set -o pipefail && xcodebuild #{arguments.reject(&:empty?).join(' ')}")
|
89
|
+
|
90
|
+
Actions.sh("set -o pipefail && xcodebuild #{arguments.reject(&:empty?).join(' ')}")
|
91
|
+
rescue StandardError => e
|
92
|
+
UI.user_error!(e)
|
93
|
+
end
|
65
94
|
end
|
66
|
-
|
95
|
+
else
|
96
|
+
xcframework = @xchelper.xcframework_path
|
97
|
+
UI.message("▸ Creating xcframework at path: #{xcframework}")
|
98
|
+
begin
|
99
|
+
FileUtils.rm_rf(xcframework) if File.exist?(xcframework)
|
100
|
+
|
101
|
+
arguments = ['-create-xcframework']
|
102
|
+
arguments << '-allow-internal-distribution' if params[:allow_internal_distribution]
|
103
|
+
|
104
|
+
params[:destinations].each_with_index do |_, index|
|
105
|
+
arguments << "-framework #{@xchelper.xcarchive_framework_path(index)}"
|
106
|
+
arguments << debug_symbols(index: index, params: params, framework: @xchelper.framework)
|
107
|
+
end
|
108
|
+
arguments << "-output #{xcframework}"
|
109
|
+
|
110
|
+
Actions.sh("set -o pipefail && xcodebuild #{arguments.reject(&:empty?).join(' ')}")
|
111
|
+
rescue StandardError => e
|
112
|
+
UI.user_error!(e)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
67
116
|
|
68
|
-
|
69
|
-
|
70
|
-
|
117
|
+
def self.sign_xcframework(params)
|
118
|
+
return if params[:code_sign_identity].nil? || params[:code_sign_identity] == false
|
119
|
+
|
120
|
+
frameworks = params[:frameworks] || [nil]
|
121
|
+
|
122
|
+
frameworks.each do |framework|
|
123
|
+
xcframework = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
124
|
+
UI.message("▸ Signing xcframework with '#{params[:code_sign_identity]}' at path: #{xcframework}")
|
125
|
+
|
126
|
+
begin
|
127
|
+
command = "codesign --force --sign '#{params[:code_sign_identity]}' --timestamp=none #{xcframework}"
|
128
|
+
UI.message(command)
|
129
|
+
Actions.sh(command)
|
130
|
+
rescue StandardError => e
|
131
|
+
UI.user_error!(e)
|
132
|
+
end
|
71
133
|
end
|
72
134
|
end
|
73
135
|
|
74
|
-
|
75
|
-
|
136
|
+
require 'tmpdir'
|
137
|
+
def self.zip_xcframework(params)
|
138
|
+
return if params[:zip_xcframework].nil? || params[:zip_xcframework] == false
|
76
139
|
|
77
|
-
|
140
|
+
# Check if the zip utility is installed
|
141
|
+
unless system("which zip > /dev/null 2>&1")
|
142
|
+
UI.important("zip utility is not installed. Installing...")
|
143
|
+
system("brew install zip") || UI.crash!("Error: Failed to install zip utility")
|
144
|
+
end
|
145
|
+
|
146
|
+
frameworks = params[:frameworks] || [nil]
|
147
|
+
|
148
|
+
if params[:combine_all_zip]
|
149
|
+
Dir.mktmpdir do |tmpdir|
|
150
|
+
frameworks.each do |framework|
|
151
|
+
xcframework = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
152
|
+
UI.message("▸ Copying xcframework at path: #{xcframework} to tmp directory")
|
153
|
+
FileUtils.cp_r(xcframework, tmpdir)
|
154
|
+
end
|
155
|
+
|
156
|
+
combined_zip_path = File.join(tmpdir, 'combined_xcframeworks.zip')
|
157
|
+
UI.message("▸ Listing all files in tmp directory")
|
158
|
+
UI.message(Dir.entries(tmpdir))
|
159
|
+
|
160
|
+
Dir.chdir(tmpdir) do
|
161
|
+
command = "zip -r -X #{combined_zip_path} ."
|
162
|
+
UI.message("▸ Zipping all xcframeworks into one zip at path: #{combined_zip_path}")
|
163
|
+
UI.message(command)
|
164
|
+
|
165
|
+
begin
|
166
|
+
Actions.sh(command)
|
167
|
+
rescue StandardError => e
|
168
|
+
UI.user_error!(e)
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
output_directory = params[:output_directory] || '.'
|
173
|
+
final_zip_path = File.join(output_directory, 'combined_xcframeworks.zip')
|
174
|
+
FileUtils.mv(combined_zip_path, final_zip_path)
|
175
|
+
UI.message("▸ Moved combined zip to output directory at path: #{final_zip_path}")
|
176
|
+
end
|
177
|
+
else
|
178
|
+
frameworks.each do |framework|
|
179
|
+
xcframework = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
78
180
|
|
79
|
-
|
80
|
-
|
81
|
-
|
181
|
+
UI.message("▸ Zipping xcframework at path: #{xcframework}")
|
182
|
+
begin
|
183
|
+
zip_path = "#{xcframework}.zip"
|
184
|
+
FileUtils.rm_f(zip_path) if File.exist?(zip_path)
|
185
|
+
|
186
|
+
command = "zip -r -X #{zip_path} #{xcframework}"
|
187
|
+
UI.message(command)
|
188
|
+
|
189
|
+
Actions.sh(command)
|
190
|
+
rescue StandardError => e
|
191
|
+
UI.user_error!(e)
|
192
|
+
end
|
193
|
+
end
|
82
194
|
end
|
195
|
+
end
|
83
196
|
|
84
|
-
|
85
|
-
if params[:
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
197
|
+
def self.delete_xcframework(params)
|
198
|
+
return if params[:delete_xcframework].nil? || params[:delete_xcframework] == false
|
199
|
+
|
200
|
+
frameworks = params[:frameworks] || [nil]
|
201
|
+
|
202
|
+
frameworks.each do |framework|
|
203
|
+
xcframework = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
204
|
+
UI.message("▸ Deleting xcframework at path: #{xcframework}")
|
205
|
+
|
206
|
+
begin
|
207
|
+
FileUtils.rm_rf(xcframework)
|
208
|
+
rescue StandardError => e
|
209
|
+
UI.user_error!(e)
|
210
|
+
end
|
211
|
+
end
|
212
|
+
end
|
213
|
+
|
214
|
+
# #Fix compile problem go to xcframework and run this command (https://developer.apple.com/forums/thread/123253):
|
215
|
+
# #The generated file includes many module references that Swift thinks are class references because it uses the class ahead of the module
|
216
|
+
# #The problem is that in the Swiftinterface file, we have a class named ABCConnections, but the module is also called ABCConnections.
|
217
|
+
def self.remove_module_reference(params)
|
218
|
+
return if params[:ignore_module_reference].nil? || params[:ignore_module_reference] == false
|
219
|
+
|
220
|
+
frameworks = params[:frameworks] || [nil]
|
221
|
+
|
222
|
+
frameworks.each do |framework|
|
223
|
+
output_path = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
224
|
+
params[:ignore_module_reference].each do |module_reference|
|
225
|
+
begin
|
226
|
+
command = "find #{output_path} -name '*.swiftinterface' -exec sed -i -e 's/#{module_reference}\\.//g' {} \\;"
|
227
|
+
success = system(command)
|
228
|
+
unless success
|
229
|
+
UI.error("Failed to execute command: #{command}")
|
230
|
+
else
|
231
|
+
UI.success("▸ Removed module reference for #{module_reference} in all matching files")
|
232
|
+
end
|
233
|
+
rescue => e
|
234
|
+
UI.error("Error: #{e.message}")
|
235
|
+
end
|
90
236
|
end
|
91
237
|
end
|
238
|
+
end
|
92
239
|
|
240
|
+
def self.debug_symbols(index:, params:, framework: nil)
|
241
|
+
return '' if !Helper.xcode_at_least?('12.0.0') || params[:include_debug_symbols] == false
|
242
|
+
|
243
|
+
frameworks = params[:frameworks] || [framework]
|
244
|
+
debug_symbols = []
|
245
|
+
|
246
|
+
frameworks.each do |fw|
|
247
|
+
# Include dSYMs in xcframework
|
248
|
+
if params[:include_dSYMs] != false
|
249
|
+
debug_symbols << "-debug-symbols #{@xchelper.xcarchive_dSYMs_path(index)}/#{fw}.dSYM"
|
250
|
+
end
|
251
|
+
|
252
|
+
# Include BCSymbols in xcframework
|
253
|
+
if params[:include_BCSymbolMaps] != false
|
254
|
+
bc_symbols_dir = @xchelper.xcarchive_BCSymbolMaps_path(index)
|
255
|
+
if Dir.exist?(bc_symbols_dir)
|
256
|
+
arguments = Dir.children(bc_symbols_dir).map { |path| "-debug-symbols #{File.expand_path("#{bc_symbols_dir}/#{path}")}" }
|
257
|
+
debug_symbols << arguments.join(' ')
|
258
|
+
end
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
93
262
|
debug_symbols.join(' ')
|
94
263
|
end
|
95
264
|
|
96
265
|
def self.copy_dSYMs(params)
|
97
266
|
return if params[:include_dSYMs] == false
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
267
|
+
|
268
|
+
frameworks = params[:frameworks] || [nil]
|
269
|
+
|
270
|
+
frameworks.each_with_index do |framework, framework_index|
|
271
|
+
dSYMs_output_dir = framework ? @xchelper.framework_dSYMs_path(framework) : @xchelper.xcframework_dSYMs_path
|
272
|
+
FileUtils.mkdir_p(dSYMs_output_dir)
|
273
|
+
|
274
|
+
dSYM_source = "#{@xchelper.xcarchive_dSYMs_path(framework_index)}/#{framework}.dSYM"
|
104
275
|
identifier = @xchelper.library_identifier(framework_index)
|
105
|
-
dSYM = "#{
|
276
|
+
dSYM = "#{framework}.#{identifier}.dSYM"
|
106
277
|
dSYM_destination = "#{dSYMs_output_dir}/#{dSYM}"
|
107
|
-
|
278
|
+
|
108
279
|
UI.important("▸ Copying #{dSYM} to #{dSYMs_output_dir}")
|
109
280
|
FileUtils.cp_r(dSYM_source, dSYM_destination)
|
110
281
|
end
|
111
282
|
end
|
112
283
|
|
113
284
|
def self.copy_BCSymbolMaps(params)
|
114
|
-
return if params[:
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
285
|
+
return if params[:include_BCSymbolMaps] == false
|
286
|
+
|
287
|
+
frameworks = params[:frameworks] || [nil]
|
288
|
+
|
289
|
+
frameworks.each_with_index do |framework, framework_index|
|
290
|
+
symbols_output_dir = framework ? @xchelper.framework_BCSymbolMaps_path(framework) : @xchelper.xcframework_BCSymbolMaps_path
|
291
|
+
FileUtils.mkdir_p(symbols_output_dir)
|
292
|
+
|
120
293
|
symbols_xcarchive_dir = @xchelper.xcarchive_BCSymbolMaps_path(framework_index)
|
121
294
|
next unless Dir.exist?(symbols_xcarchive_dir)
|
122
|
-
|
295
|
+
|
123
296
|
FileUtils.cp_r("#{symbols_xcarchive_dir}/.", symbols_output_dir)
|
124
297
|
UI.important("▸ Copying #{Dir.children(symbols_xcarchive_dir)} to #{symbols_output_dir}")
|
125
298
|
end
|
@@ -133,22 +306,32 @@ module Fastlane
|
|
133
306
|
end
|
134
307
|
|
135
308
|
def self.update_xcargs(params)
|
136
|
-
xcargs = []
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
309
|
+
xcargs = params[:override_xcargs].to_s.strip.split(' ')
|
310
|
+
skip_install_set = false
|
311
|
+
build_library_for_distribution_set = false
|
312
|
+
|
313
|
+
xcargs.each do |arg|
|
314
|
+
if arg.match?(/SKIP_INSTALL(=|\s+)/)
|
315
|
+
skip_install_set = true
|
316
|
+
unless arg.match?(/SKIP_INSTALL=NO/)
|
317
|
+
xcargs.delete(arg)
|
318
|
+
xcargs << 'SKIP_INSTALL=NO'
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
if arg.match?(/BUILD_LIBRARY_FOR_DISTRIBUTION(=|\s+)/)
|
323
|
+
build_library_for_distribution_set = true
|
324
|
+
unless arg.match?(/BUILD_LIBRARY_FOR_DISTRIBUTION=YES/)
|
325
|
+
xcargs.delete(arg)
|
326
|
+
xcargs << 'BUILD_LIBRARY_FOR_DISTRIBUTION=YES'
|
327
|
+
end
|
142
328
|
end
|
143
|
-
xcargs.concat(['SKIP_INSTALL=NO', 'BUILD_LIBRARY_FOR_DISTRIBUTION=YES'])
|
144
|
-
end
|
145
|
-
|
146
|
-
if params[:enable_bitcode] != false
|
147
|
-
params[:xcargs].gsub!(/ENABLE_BITCODE(=|\s+)(YES|NO)/, '') if params[:xcargs]
|
148
|
-
xcargs << ['OTHER_CFLAGS="-fembed-bitcode"', 'BITCODE_GENERATION_MODE="bitcode"', 'ENABLE_BITCODE=YES']
|
149
329
|
end
|
150
|
-
|
151
|
-
|
330
|
+
|
331
|
+
xcargs << 'SKIP_INSTALL=NO' unless skip_install_set
|
332
|
+
xcargs << 'BUILD_LIBRARY_FOR_DISTRIBUTION=YES' unless build_library_for_distribution_set
|
333
|
+
|
334
|
+
xcargs.join(' ')
|
152
335
|
end
|
153
336
|
|
154
337
|
def self.update_destinations(params)
|
@@ -203,7 +386,7 @@ module Fastlane
|
|
203
386
|
end
|
204
387
|
|
205
388
|
def self.authors
|
206
|
-
['
|
389
|
+
['ykhandelwal']
|
207
390
|
end
|
208
391
|
|
209
392
|
def self.details
|
@@ -218,13 +401,6 @@ module Fastlane
|
|
218
401
|
description: "The project's scheme. Make sure it's marked as Shared",
|
219
402
|
optional: false
|
220
403
|
),
|
221
|
-
FastlaneCore::ConfigItem.new(
|
222
|
-
key: :enable_bitcode,
|
223
|
-
description: 'Should the project be built with bitcode enabled?',
|
224
|
-
optional: true,
|
225
|
-
is_string: false,
|
226
|
-
default_value: true
|
227
|
-
),
|
228
404
|
FastlaneCore::ConfigItem.new(
|
229
405
|
key: :destinations,
|
230
406
|
description: 'Use custom destinations for building the xcframework',
|
@@ -282,8 +458,46 @@ module Fastlane
|
|
282
458
|
'Set this to false to preserve the passed xcargs',
|
283
459
|
optional: true,
|
284
460
|
default_value: true
|
461
|
+
),
|
462
|
+
FastlaneCore::ConfigItem.new(
|
463
|
+
key: :frameworks,
|
464
|
+
description: 'List of frameworks to create xcframework for',
|
465
|
+
optional: true,
|
466
|
+
is_string: false,
|
467
|
+
type: Array,
|
468
|
+
default_value: []),
|
469
|
+
FastlaneCore::ConfigItem.new(
|
470
|
+
key: :code_sign_identity,
|
471
|
+
description: 'Code sign identity to use for building the xcframework',
|
472
|
+
optional: true
|
473
|
+
),
|
474
|
+
FastlaneCore::ConfigItem.new(
|
475
|
+
key: :zip_xcframework,
|
476
|
+
description: 'Zip the xcframework after creation',
|
477
|
+
optional: true,
|
478
|
+
default_value: false
|
479
|
+
),
|
480
|
+
FastlaneCore::ConfigItem.new(
|
481
|
+
key: :ignore_module_reference,
|
482
|
+
description: 'List of module references to remove from the xcframework',
|
483
|
+
optional: true,
|
484
|
+
is_string: false,
|
485
|
+
type: Array,
|
486
|
+
default_value: []),
|
487
|
+
FastlaneCore::ConfigItem.new(
|
488
|
+
key: :delete_xcframework,
|
489
|
+
description: 'Delete the xcframework after creation',
|
490
|
+
optional: true,
|
491
|
+
default_value: false
|
492
|
+
),
|
493
|
+
FastlaneCore::ConfigItem.new(
|
494
|
+
key: :combine_all_zip,
|
495
|
+
description: 'Combine all xcframeworks into one zip file',
|
496
|
+
optional: true,
|
497
|
+
default_value: false
|
285
498
|
)
|
286
499
|
]
|
500
|
+
|
287
501
|
end
|
288
502
|
|
289
503
|
def self.category
|
@@ -0,0 +1,105 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Actions
|
3
|
+
class ValidateXcframeworkAction < Action
|
4
|
+
def self.run(params)
|
5
|
+
validate_xcframework(params)
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.validate_xcframework(params)
|
9
|
+
return if params[:validate_xcframework].nil? || params[:validate_xcframework] == false
|
10
|
+
|
11
|
+
UI.message("▸ Validating xcframework")
|
12
|
+
xcframework_paths = []
|
13
|
+
|
14
|
+
frameworks = params[:frameworks] || [nil]
|
15
|
+
|
16
|
+
@xchelper = Helper::CreateXcframeworkHelper.new(params)
|
17
|
+
frameworks.each do |framework|
|
18
|
+
xcframework = framework ? @xchelper.get_xcframework_path(framework) : @xchelper.xcframework_path
|
19
|
+
xcframework_paths << xcframework
|
20
|
+
end
|
21
|
+
|
22
|
+
UI.message("▸ Creating temporary sample app")
|
23
|
+
sample_app_path = Helper::ValidateXcframeworkHelper.create_sample_app(xcframework_paths)
|
24
|
+
|
25
|
+
UI.message("▸ Building the sample app to validate xcframework")
|
26
|
+
begin
|
27
|
+
Dir.chdir(sample_app_path) do
|
28
|
+
Actions.sh("swift build")
|
29
|
+
UI.success("xcframework validation succeeded")
|
30
|
+
end
|
31
|
+
rescue StandardError => e
|
32
|
+
UI.user_error!("xcframework validation failed: #{e}")
|
33
|
+
end
|
34
|
+
|
35
|
+
UI.message("▸ Creating project.yml for xcodegen")
|
36
|
+
project_yml_path = Helper::ValidateXcframeworkHelper.create_project_yml(xcframework_paths, sample_app_path)
|
37
|
+
|
38
|
+
UI.message("▸ Generating Xcode project using xcodegen")
|
39
|
+
begin
|
40
|
+
Helper::ValidateXcframeworkHelper.generate_xcode_project(project_yml_path)
|
41
|
+
UI.success("Xcode project generated successfully with xcodegen")
|
42
|
+
rescue StandardError => e
|
43
|
+
UI.user_error!("Failed to generate Xcode project with xcodegen: #{e}")
|
44
|
+
end
|
45
|
+
|
46
|
+
UI.message("▸ Building the Xcode project to validate xcframework")
|
47
|
+
xcodeproj_path = File.join(sample_app_path, 'SampleApp.xcodeproj')
|
48
|
+
begin
|
49
|
+
Helper::ValidateXcframeworkHelper.build_xcode_project(xcodeproj_path)
|
50
|
+
UI.success("xcframework validation succeeded with xcodebuild")
|
51
|
+
rescue StandardError => e
|
52
|
+
UI.user_error!("xcframework validation failed with xcodebuild: #{e}")
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def self.run_swiftlint
|
57
|
+
UI.message("▸ Running SwiftLint")
|
58
|
+
begin
|
59
|
+
Actions.sh("if which swiftlint >/dev/null; then swiftlint; else echo 'warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint'; fi")
|
60
|
+
UI.success("SwiftLint check completed successfully")
|
61
|
+
rescue StandardError => e
|
62
|
+
UI.user_error!("SwiftLint check failed: #{e}")
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def self.description
|
67
|
+
"Validate xcframework and run SwiftLint"
|
68
|
+
end
|
69
|
+
|
70
|
+
def self.authors
|
71
|
+
["Your Name"]
|
72
|
+
end
|
73
|
+
|
74
|
+
def self.return_value
|
75
|
+
# If your method provides a return value, you can describe it here
|
76
|
+
end
|
77
|
+
|
78
|
+
def self.details
|
79
|
+
# Optional:
|
80
|
+
"This action validates an xcframework by creating a temporary sample app, building it, and running SwiftLint."
|
81
|
+
end
|
82
|
+
|
83
|
+
def self.available_options
|
84
|
+
[
|
85
|
+
FastlaneCore::ConfigItem.new(key: :frameworks,
|
86
|
+
description: "Paths to the frameworks to be validated",
|
87
|
+
optional: false,
|
88
|
+
type: Array),
|
89
|
+
FastlaneCore::ConfigItem.new(key: :validate_xcframework,
|
90
|
+
description: "Flag to validate xcframework",
|
91
|
+
optional: true,
|
92
|
+
type: Boolean),
|
93
|
+
FastlaneCore::ConfigItem.new(key: :xcframework_output_directory,
|
94
|
+
description: "Output directory for the xcframework",
|
95
|
+
optional: true,
|
96
|
+
type: String)
|
97
|
+
]
|
98
|
+
end
|
99
|
+
|
100
|
+
def self.is_supported?(platform)
|
101
|
+
true
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
@@ -32,6 +32,22 @@ module Fastlane
|
|
32
32
|
UI.user_error!("▸ PRODUCT_NAME was misdefined: `#{product_name}`. Please, provide :product_name option")
|
33
33
|
end
|
34
34
|
|
35
|
+
def get_xcarchive_framework_path(framework_index, framework_name)
|
36
|
+
UI.message("▸ get_xcarchive_framework_path: framework_name: `#{framework_name}`")
|
37
|
+
framework_path = "#{xcarchive_path_for_destination(framework_index)}/Products/Library/Frameworks/#{framework_name}.framework"
|
38
|
+
UI.message("▸ get_xcarchive_framework_path: framework_path: `#{framework_path}`")
|
39
|
+
return framework_path if File.exist?(framework_path)
|
40
|
+
|
41
|
+
UI.user_error!("▸ get_xcarchive_framework_path: framework_name was misdefined: `#{framework_name}`. Please, provide :framework_name option")
|
42
|
+
end
|
43
|
+
|
44
|
+
def xcarchive_frameworks_dir(framework_index)
|
45
|
+
frameworks_dir = "#{xcarchive_path_for_destination(framework_index)}/Products/Library/Frameworks"
|
46
|
+
return frameworks_dir if File.exist?(frameworks_dir)
|
47
|
+
|
48
|
+
UI.user_error!("▸ Frameworks directory does not exist for the given index: `#{framework_index}`.")
|
49
|
+
end
|
50
|
+
|
35
51
|
def xcarchive_frameworks_path
|
36
52
|
@params[:destinations].each_with_index.map { |_, i| xcarchive_framework_path(i) }
|
37
53
|
end
|
@@ -44,6 +60,10 @@ module Fastlane
|
|
44
60
|
File.expand_path("#{output_directory}/#{product_name}.dSYMs")
|
45
61
|
end
|
46
62
|
|
63
|
+
def framework_dSYMs_path(framework_name)
|
64
|
+
File.expand_path("#{output_directory}/#{framework_name}.dSYMs")
|
65
|
+
end
|
66
|
+
|
47
67
|
def xcarchive_BCSymbolMaps_path(framework_index)
|
48
68
|
File.expand_path("#{xcarchive_path_for_destination(framework_index)}/BCSymbolMaps")
|
49
69
|
end
|
@@ -52,10 +72,18 @@ module Fastlane
|
|
52
72
|
File.expand_path("#{output_directory}/#{product_name}.BCSymbolMaps")
|
53
73
|
end
|
54
74
|
|
75
|
+
def framework_BCSymbolMaps_path(framework_name)
|
76
|
+
File.expand_path("#{output_directory}/#{framework_name}.BCSymbolMaps")
|
77
|
+
end
|
78
|
+
|
55
79
|
def xcframework_path
|
56
80
|
File.expand_path("#{output_directory}/#{xcframework}")
|
57
81
|
end
|
58
82
|
|
83
|
+
def get_xcframework_path(framework_name)
|
84
|
+
File.expand_path("#{output_directory}/#{framework_name}.xcframework")
|
85
|
+
end
|
86
|
+
|
59
87
|
def output_directory
|
60
88
|
@params[:xcframework_output_directory] || ''
|
61
89
|
end
|
@@ -0,0 +1,142 @@
|
|
1
|
+
module Fastlane
|
2
|
+
module Helper
|
3
|
+
class ValidateXcframeworkHelper
|
4
|
+
def self.create_sample_app(framework_paths)
|
5
|
+
tmpdir = Dir.mktmpdir
|
6
|
+
sample_app_path = File.join(tmpdir, 'SampleApp')
|
7
|
+
Dir.mkdir(sample_app_path)
|
8
|
+
Dir.chdir(sample_app_path) do
|
9
|
+
system("swift package init --type executable")
|
10
|
+
tests_path = File.join(sample_app_path, 'Tests', 'SampleAppTests')
|
11
|
+
FileUtils.mkdir_p(tests_path)
|
12
|
+
|
13
|
+
# Copy frameworks to the temporary sample app folder
|
14
|
+
framework_paths.each do |path|
|
15
|
+
FileUtils.cp_r(path, sample_app_path)
|
16
|
+
end
|
17
|
+
|
18
|
+
package_swift_path = File.join(sample_app_path, 'Package.swift')
|
19
|
+
# Extract names from framework paths and ensure paths are relative
|
20
|
+
binary_targets = framework_paths.map do |path|
|
21
|
+
name = File.basename(path, ".framework")
|
22
|
+
relative_path = "./" + File.basename(path)
|
23
|
+
".binaryTarget(name: \"#{name}\", path: \"#{relative_path}\")"
|
24
|
+
end.join(",\n ")
|
25
|
+
|
26
|
+
# Create dependencies for SampleApp target
|
27
|
+
dependencies = framework_paths.map do |path|
|
28
|
+
name = File.basename(path, ".framework")
|
29
|
+
"\"#{name}\""
|
30
|
+
end.join(", ")
|
31
|
+
|
32
|
+
resources = framework_paths.map do |path|
|
33
|
+
name = File.basename(path, ".framework")
|
34
|
+
".copy(\"./#{name}.framework\")"
|
35
|
+
end.join(",\n ")
|
36
|
+
|
37
|
+
# Add all framework names to the products target
|
38
|
+
product_targets = framework_paths.map do |path|
|
39
|
+
name = File.basename(path, ".framework")
|
40
|
+
"\"#{name}\""
|
41
|
+
end.join(", ")
|
42
|
+
|
43
|
+
package_swift_content = <<-SWIFT
|
44
|
+
// swift-tools-version:5.3
|
45
|
+
import PackageDescription
|
46
|
+
|
47
|
+
let package = Package(
|
48
|
+
name: "SampleApp",
|
49
|
+
platforms: [
|
50
|
+
.macOS(.v10_15),
|
51
|
+
.iOS(.v13)
|
52
|
+
],
|
53
|
+
products: [
|
54
|
+
.executable(name: "SampleApp", targets: ["SampleApp", #{product_targets}]),
|
55
|
+
],
|
56
|
+
dependencies: [
|
57
|
+
// Add dependencies here
|
58
|
+
],
|
59
|
+
targets: [
|
60
|
+
#{binary_targets},
|
61
|
+
.target(
|
62
|
+
name: "SampleApp",
|
63
|
+
dependencies: [#{dependencies}],
|
64
|
+
path: "Sources",
|
65
|
+
resources: [
|
66
|
+
#{resources}
|
67
|
+
]
|
68
|
+
),
|
69
|
+
.testTarget(
|
70
|
+
name: "SampleAppTests",
|
71
|
+
dependencies: ["SampleApp"],
|
72
|
+
path: "Tests/SampleAppTests"
|
73
|
+
),
|
74
|
+
]
|
75
|
+
)
|
76
|
+
SWIFT
|
77
|
+
|
78
|
+
File.write(package_swift_path, package_swift_content.strip)
|
79
|
+
end
|
80
|
+
sample_app_path
|
81
|
+
end
|
82
|
+
|
83
|
+
def self.create_project_yml(framework_paths, sample_app_path)
|
84
|
+
project_yml_content = {
|
85
|
+
"name" => "SampleApp",
|
86
|
+
"options" => {
|
87
|
+
"bundleIdPrefix" => "com.intuit"
|
88
|
+
},
|
89
|
+
"targets" => {
|
90
|
+
"SampleApp" => {
|
91
|
+
"type" => "application",
|
92
|
+
"platform" => "iOS",
|
93
|
+
"deploymentTarget" => "13.0",
|
94
|
+
"sources" => ["Sources"],
|
95
|
+
"resources" => framework_paths.map { |path| "./#{File.basename(path)}" },
|
96
|
+
"dependencies" => framework_paths.map { |path| { "framework" => "./#{File.basename(path)}", "embed" => true } },
|
97
|
+
"settings" => {
|
98
|
+
"base" => {
|
99
|
+
"DEVELOPMENT_TEAM" => "F6DWWXWEX6",
|
100
|
+
"GENERATE_INFOPLIST_FILE" => "YES",
|
101
|
+
"CODE_SIGN_IDENTITY" => "iPhone Developer",
|
102
|
+
"LD_RUNPATH_SEARCH_PATHS" => ["$(inherited)", "@executable_path/Frameworks"],
|
103
|
+
"SDKROOT" => "iphoneos",
|
104
|
+
"TARGETED_DEVICE_FAMILY" => "1,2",
|
105
|
+
"VERSIONING_SYSTEM" => "apple-generic",
|
106
|
+
"CURRENT_PROJECT_VERSION" => "1",
|
107
|
+
"MARKETING_VERSION" => "1.0",
|
108
|
+
"CFBundleVersion" => "$(CURRENT_PROJECT_VERSION)",
|
109
|
+
"CFBundleShortVersionString" => "$(MARKETING_VERSION)"
|
110
|
+
},
|
111
|
+
"configs" => {
|
112
|
+
"debug" => {
|
113
|
+
"CODE_SIGN_STYLE" => "Manual",
|
114
|
+
"PROVISIONING_PROFILE_SPECIFIER" => "com.intuit.*.InHouse",
|
115
|
+
"CODE_SIGN_IDENTITY" => "iPhone Distribution: Intuit Inc.(Ent)"
|
116
|
+
},
|
117
|
+
"release" => {
|
118
|
+
"CODE_SIGN_STYLE" => "Manual",
|
119
|
+
"PROVISIONING_PROFILE_SPECIFIER" => "com.intuit.*.InHouse",
|
120
|
+
"CODE_SIGN_IDENTITY" => "iPhone Distribution: Intuit Inc.(Ent)"
|
121
|
+
}
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
project_yml_path = File.join(sample_app_path, 'project.yml')
|
129
|
+
File.write(project_yml_path, project_yml_content.to_yaml)
|
130
|
+
project_yml_path
|
131
|
+
end
|
132
|
+
|
133
|
+
def self.generate_xcode_project(project_yml_path)
|
134
|
+
Actions.sh("xcodegen generate --spec #{project_yml_path}")
|
135
|
+
end
|
136
|
+
|
137
|
+
def self.build_xcode_project(xcodeproj_path)
|
138
|
+
Actions.sh("xcodebuild -project #{xcodeproj_path} -scheme SampleApp -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14' build")
|
139
|
+
end
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-mobile_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yogesh Khandelwal
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -192,7 +192,7 @@ dependencies:
|
|
192
192
|
- - ">="
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
|
-
description:
|
195
|
+
description:
|
196
196
|
email: yogesh_khandelwal@intuit.com
|
197
197
|
executables: []
|
198
198
|
extensions: []
|
@@ -202,13 +202,15 @@ files:
|
|
202
202
|
- README.md
|
203
203
|
- lib/fastlane/plugin/mobile_tools.rb
|
204
204
|
- lib/fastlane/plugin/mobile_tools/actions/create_xcframework_action.rb
|
205
|
+
- lib/fastlane/plugin/mobile_tools/actions/validate_xcframework_action.rb
|
205
206
|
- lib/fastlane/plugin/mobile_tools/helper/create_xcframework_helper.rb
|
207
|
+
- lib/fastlane/plugin/mobile_tools/helper/validate_xcframework_helper.rb
|
206
208
|
- lib/fastlane/plugin/mobile_tools/version.rb
|
207
209
|
homepage: https://github.com/ykhandelwal913/fastlane-plugin-mobile_tools
|
208
210
|
licenses:
|
209
211
|
- MIT
|
210
212
|
metadata: {}
|
211
|
-
post_install_message:
|
213
|
+
post_install_message:
|
212
214
|
rdoc_options: []
|
213
215
|
require_paths:
|
214
216
|
- lib
|
@@ -223,8 +225,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
223
225
|
- !ruby/object:Gem::Version
|
224
226
|
version: '0'
|
225
227
|
requirements: []
|
226
|
-
rubygems_version: 3.
|
227
|
-
signing_key:
|
228
|
+
rubygems_version: 3.2.3
|
229
|
+
signing_key:
|
228
230
|
specification_version: 4
|
229
231
|
summary: fastlane plugin for mobile devops tooling
|
230
232
|
test_files: []
|