Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -157,31 +157,6 @@ def build_code_next
BUILD_CODE_FORMATTER.build_code(version: build_code_next)
end

########################################################################
# Group buildkite logs by action
########################################################################

# A module that defines methods to be used as overrides to `Fastlane::Actions`
# module methods.
module FastlaneActionLogGroup
def print_group(action_name)
return if %w[is_ci].include?(action_name)

puts "~~~ :fastlane: #{ENV.fetch('FASTLANE_LANE_NAME', '[root]')} >> #{action_name}"
end

def execute_action(action_name)
print_group(action_name)
super
end
end

if ENV.key?('BUILDKITE')
Fastlane::Actions.singleton_class.class_eval do
prepend FastlaneActionLogGroup
end
end

########################################################################
# Imports domain-specific lanes
########################################################################
Expand Down