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
|
# File 'lib/fastlane/plugin/sentry/actions/sentry_upload_dif.rb', line 54
def self.available_options
Helper::SentryConfig.common_api_config_items + [
FastlaneCore::ConfigItem.new(key: :path,
description: "Path or an array of paths to search recursively for symbol files",
type: Array,
optional: true),
FastlaneCore::ConfigItem.new(key: :type,
short_option: "-t",
description: "Only consider debug information files of the given \
type. By default, all types are considered",
optional: true,
verify_block: proc do |value|
UI.user_error! "Invalid value '#{value}'" unless ['dsym', 'elf', 'breakpad', 'pdb', 'pe', 'sourcebundle', 'bcsymbolmap'].include? value
end),
FastlaneCore::ConfigItem.new(key: :no_unwind,
description: "Do not scan for stack unwinding information. Specify \
this flag for builds with disabled FPO, or when \
stackwalking occurs on the device. This usually \
excludes executables and dynamic libraries. They might \
still be uploaded, if they contain additional \
processable information (see other flags)",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :no_debug,
description: "Do not scan for debugging information. This will \
usually exclude debug companion files. They might \
still be uploaded, if they contain additional \
processable information (see other flags)",
conflicting_options: [:no_unwind],
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :no_sources,
description: "Do not scan for source information. This will \
usually exclude source bundle files. They might \
still be uploaded, if they contain additional \
processable information (see other flags)",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :ids,
description: "Search for specific debug identifiers",
optional: true),
FastlaneCore::ConfigItem.new(key: :require_all,
description: "Errors if not all identifiers specified with --id could be found",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :symbol_maps,
description: "Optional path to BCSymbolMap files which are used to \
resolve hidden symbols in dSYM files downloaded from \
iTunes Connect. This requires the dsymutil tool to be \
available",
optional: true),
FastlaneCore::ConfigItem.new(key: :derived_data,
description: "Search for debug symbols in Xcode's derived data",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :no_zips,
description: "Do not search in ZIP files",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :info_plist,
description: "Optional path to the Info.plist.{n}We will try to find this \
automatically if run from Xcode. Providing this information \
will associate the debug symbols with a specific ITC application \
and build in Sentry. Note that if you provide the plist \
explicitly it must already be processed",
optional: true),
FastlaneCore::ConfigItem.new(key: :no_reprocessing,
description: "Do not trigger reprocessing after uploading",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :force_foreground,
description: "Wait for the process to finish.{n}\
By default, the upload process will detach and continue in the \
background when triggered from Xcode. When an error happens, \
a dialog is shown. If this parameter is passed Xcode will wait \
for the process to finish before the build finishes and output \
will be shown in the Xcode build output",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :include_sources,
description: "Include sources from the local file system and upload \
them as source bundles",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :wait,
description: "Wait for the server to fully process uploaded files. Errors \
can only be displayed if --wait is specified, but this will \
significantly slow down the upload process",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :upload_symbol_maps,
description: "Upload any BCSymbolMap files found to allow Sentry to resolve \
hidden symbols, e.g. when it downloads dSYMs directly from App \
Store Connect or when you upload dSYMs without first resolving \
the hidden symbols using --symbol-maps",
is_string: false,
optional: true)
]
end
|