Skip to content

Commit df4f1d4

Browse files
committed
Print some logs
1 parent 6870c2b commit df4f1d4

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

fastlane/Fastfile

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -266,12 +266,12 @@ lane :match_me do |options|
266266
'io.getstream.iOS.StreamChatUITestsApp',
267267
'io.getstream.iOS.StreamChatUITestsAppUITests.xctrunner'
268268
]
269-
custom_match(
270-
api_key: appstore_api_key,
271-
app_identifier: app_identifiers,
272-
readonly: options[:readonly],
273-
register_device: options[:register_device]
274-
)
269+
# custom_match(
270+
# api_key: appstore_api_key,
271+
# app_identifier: app_identifiers,
272+
# readonly: options[:readonly],
273+
# register_device: options[:register_device]
274+
# )
275275
end
276276

277277
desc 'Builds the latest version of Demo app and uploads it to TestFlight'
@@ -942,9 +942,10 @@ private_lane :frameworks_sizes do
942942
)
943943

944944
# Parse the thinned size of Assets.car from Packaging.log
945+
packaging_log_path = "#{Gym.cache[:temporary_output_path]}/Packaging.log"
946+
UI.message("Successfully exported the Packaging log file: \n#{packaging_log_path}")
945947
assets_size_regex = %r{\b(\d+)\sbytes\sfor\s./Payload/ChatSample.app/Frameworks/StreamChatUI.framework/Assets.car\b}
946-
packaging_log_content = File.read("#{Gym.cache[:temporary_output_path]}/Packaging.log")
947-
match = packaging_log_content.match(assets_size_regex)
948+
match = File.read(packaging_log_path).match(assets_size_regex)
948949
assets_thinned_size = match[1].to_i
949950

950951
frameworks_path = "../#{archive_dir}/Products/Library/Frameworks/ChatSample.app/Frameworks"

0 commit comments

Comments
 (0)