fastlane/lib/fastlane/runner.rb in fastlane-2.83.0.beta.20180226050016 vs fastlane/lib/fastlane/runner.rb in fastlane-2.83.0
- old
+ new
@@ -222,12 +222,13 @@
end
verify_supported_os(method_sym, class_ref)
begin
- launch_context = FastlaneCore::ActionLaunchContext.context_for_action_name(method_sym.to_s, configuration_language: configuration_language, args: ARGV)
- FastlaneCore.session.action_launched(launch_context: launch_context)
+ # https://github.com/fastlane/fastlane/issues/11913
+ # launch_context = FastlaneCore::ActionLaunchContext.context_for_action_name(method_sym.to_s, configuration_language: configuration_language, args: ARGV)
+ # FastlaneCore.session.action_launched(launch_context: launch_context)
Dir.chdir(custom_dir) do # go up from the fastlane folder, to the project folder
# If another action is calling this action, we shouldn't show it in the summary
# (see https://github.com/fastlane/fastlane/issues/4546)
@@ -277,13 +278,14 @@
raise e
end
end
def action_completed(action_name, status: nil, exception: nil)
- if exception.nil? || exception.fastlane_should_report_metrics?
- action_completion_context = FastlaneCore::ActionCompletionContext.context_for_action_name(action_name, args: ARGV, status: status)
- FastlaneCore.session.action_completed(completion_context: action_completion_context)
- end
+ # https://github.com/fastlane/fastlane/issues/11913
+ # if exception.nil? || exception.fastlane_should_report_metrics?
+ # action_completion_context = FastlaneCore::ActionCompletionContext.context_for_action_name(action_name, args: ARGV, status: status)
+ # FastlaneCore.session.action_completed(completion_context: action_completion_context)
+ # end
end
def execute_flow_block(block, current_platform, lane, parameters)
# Call the platform specific block and default back to the general one
block[current_platform].call(lane, parameters) if block[current_platform] && current_platform