Class: Fastlane::Actions::DownloadDsymsAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::DownloadDsymsAction
- Defined in:
- fastlane/lib/fastlane/actions/download_dsyms.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Documentation collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .details ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .output ⇒ Object
- .return_value ⇒ Object
Class Method Summary collapse
-
.download(download_url, bundle_id, train_number, build_version, output_directory) ⇒ Object
rubocop:enable Metrics/PerceivedComplexity.
- .download_file(url) ⇒ Object
-
.run(params) ⇒ Object
rubocop:disable Metrics/PerceivedComplexity.
- .write_dsym(data, bundle_id, train_number, build_number, output_directory) ⇒ Object
Methods inherited from Fastlane::Action
action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
293 294 295 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 293 def self. ["KrauseFx"] end |
.available_options ⇒ Object
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 198 def self. user = CredentialsManager::AppfileConfig.try_fetch_value(:itunes_connect_id) user ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id) [ FastlaneCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "DOWNLOAD_DSYMS_USERNAME", description: "Your Apple ID Username for App Store Connect", default_value: user, default_value_dynamic: true), FastlaneCore::ConfigItem.new(key: :app_identifier, short_option: "-a", env_name: "DOWNLOAD_DSYMS_APP_IDENTIFIER", description: "The bundle identifier of your app", optional: false, code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier), default_value_dynamic: true), FastlaneCore::ConfigItem.new(key: :team_id, short_option: "-k", env_name: "DOWNLOAD_DSYMS_TEAM_ID", description: "The ID of your App Store Connect team if you're in multiple teams", optional: true, is_string: false, # as we also allow integers, which we convert to strings anyway code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id), default_value_dynamic: true, verify_block: proc do |value| ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :team_name, short_option: "-e", env_name: "DOWNLOAD_DSYMS_TEAM_NAME", description: "The name of your App Store Connect team if you're in multiple teams", optional: true, code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name), default_value_dynamic: true, verify_block: proc do |value| ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :platform, short_option: "-p", env_name: "DOWNLOAD_DSYMS_PLATFORM", description: "The app platform for dSYMs you wish to download (ios, appletvos)", optional: true, default_value: :ios), FastlaneCore::ConfigItem.new(key: :version, short_option: "-v", env_name: "DOWNLOAD_DSYMS_VERSION", description: "The app version for dSYMs you wish to download, pass in 'latest' to download only the latest build's dSYMs or 'live' to download only the live version dSYMs", optional: true), FastlaneCore::ConfigItem.new(key: :build_number, short_option: "-b", env_name: "DOWNLOAD_DSYMS_BUILD_NUMBER", description: "The app build_number for dSYMs you wish to download", optional: true), FastlaneCore::ConfigItem.new(key: :min_version, short_option: "-m", env_name: "DOWNLOAD_DSYMS_MIN_VERSION", description: "The minimum app version for dSYMs you wish to download", optional: true), FastlaneCore::ConfigItem.new(key: :output_directory, short_option: "-s", env_name: "DOWNLOAD_DSYMS_OUTPUT_DIRECTORY", description: "Where to save the download dSYMs, defaults to the current path", optional: true), FastlaneCore::ConfigItem.new(key: :wait_for_dsym_processing, short_option: "-w", env_name: "DOWNLOAD_DSYMS_WAIT_FOR_DSYM_PROCESSING", description: "Wait for dSYMs to process", optional: true, default_value: false, type: Boolean), FastlaneCore::ConfigItem.new(key: :wait_timeout, short_option: "-t", env_name: "DOWNLOAD_DSYMS_WAIT_TIMEOUT", description: "Number of seconds to wait for dSYMs to process", optional: true, default_value: 300, type: Integer) ] end |
.category ⇒ Object
310 311 312 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 310 def self.category :app_store_connect end |
.description ⇒ Object
177 178 179 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 177 def self.description "Download dSYM files from App Store Connect for Bitcode apps" end |
.details ⇒ Object
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 181 def self.details sample = <<-SAMPLE.markdown_sample ```ruby lane :refresh_dsyms do download_dsyms # Download dSYM files from iTC upload_symbols_to_crashlytics # Upload them to Crashlytics clean_build_artifacts # Delete the local dSYM files end ``` SAMPLE [ "This action downloads dSYM files from App Store Connect after the ipa gets re-compiled by Apple. Useful if you have Bitcode enabled.".markdown_preserve_newlines, sample ].join("\n") end |
.download(download_url, bundle_id, train_number, build_version, output_directory) ⇒ Object
rubocop:enable Metrics/PerceivedComplexity
147 148 149 150 151 152 153 154 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 147 def self.download(download_url, bundle_id, train_number, build_version, output_directory) result = self.download_file(download_url) path = write_dsym(result, bundle_id, train_number, build_version, output_directory) UI.success("🔑 Successfully downloaded dSYM file for #{train_number} - #{build_version} to '#{path}'") Actions.lane_context[SharedValues::DSYM_PATHS] ||= [] Actions.lane_context[SharedValues::DSYM_PATHS] << File.(path) end |
.download_file(url) ⇒ Object
165 166 167 168 169 170 171 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 165 def self.download_file(url) uri = URI.parse(url) http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = (uri.scheme == "https") res = http.get(uri.request_uri) res.body end |
.example_code ⇒ Object
301 302 303 304 305 306 307 308 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 301 def self.example_code [ 'download_dsyms', 'download_dsyms(version: "1.0.0", build_number: "345")', 'download_dsyms(version: "live")', 'download_dsyms(min_version: "1.2.3")' ] end |
.is_supported?(platform) ⇒ Boolean
297 298 299 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 297 def self.is_supported?(platform) [:ios, :appletvos].include?(platform) end |
.output ⇒ Object
283 284 285 286 287 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 283 def self.output [ ['DSYM_PATHS', 'An array to all the zipped dSYM files'] ] end |
.return_value ⇒ Object
289 290 291 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 289 def self.return_value nil end |
.run(params) ⇒ Object
rubocop:disable Metrics/PerceivedComplexity
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 8 def self.run(params) require 'spaceship' require 'net/http' UI.("Login to App Store Connect (#{params[:username]})") Spaceship::Tunes.login(params[:username]) Spaceship::Tunes.select_team UI.("Login successful") # Get App app = Spaceship::Application.find(params[:app_identifier]) unless app UI.user_error!("Could not find app with bundle identifier '#{params[:app_identifier]}' on account #{params[:username]}") end # Process options version = params[:version] build_number = params[:build_number] platform = params[:platform] output_directory = params[:output_directory] wait_for_dsym_processing = params[:wait_for_dsym_processing] wait_timeout = params[:wait_timeout] min_version = Gem::Version.new(params[:min_version]) if params[:min_version] # Set version if it is latest if version == 'latest' # Try to grab the edit version first, else fallback to live version UI.("Looking for latest version...") latest_version = app.edit_version(platform: platform) || app.live_version(platform: platform) UI.user_error!("Could not find latest version for your app, please try setting a specific version") if latest_version.version.nil? latest_candidate_build = latest_version.candidate_builds.max_by(&:upload_date) if latest_candidate_build.nil? version = latest_version.version build_number = latest_version.build_version else # The build_version of a candidate build does not always match the one in latest_version so get the version and build number from the same place. version = latest_candidate_build.train_version build_number = latest_candidate_build.build_version end elsif version == 'live' UI.("Looking for live version...") live_version = app.live_version(platform: platform) UI.user_error!("Could not find live version for your app, please try setting 'latest' or a specific version") if live_version.nil? # No need to search for candidates, because released App Store version should only have one build version = live_version.version build_number = live_version.build_version end # Remove leading zeros from version string (eg. 1.02 -> 1.2) if version version = version.split(".").map(&:to_i).join(".") end # Make sure output_directory has a slash on the end if output_directory && !output_directory.end_with?('/') output_directory += '/' end # Write a nice message = [] << "Looking for dSYM files for '#{params[:app_identifier]}' on platform #{platform}" << "v#{version}" if version << "(#{build_number})" if build_number UI.(.join(" ")) app.tunes_all_build_trains(platform: platform).each do |train| = [] << "Found train (version): #{train.version_string}" << ", comparing to supplied version: #{version}" if version UI.verbose(.join(" ")) if version && version != train.version_string UI.verbose("Version #{version} doesn't match: #{train.version_string}") next end if min_version && min_version > Gem::Version.new(train.version_string) UI.verbose("Min version #{min_version} not reached: #{train.version_string}") next end app.tunes_all_builds_for_train(train: train.version_string, platform: platform).each do |build| = [] << "Found build version: #{build.build_version}" << ", comparing to supplied build_number: #{build_number}" if build_number UI.verbose(.join(" ")) if build_number && build.build_version != build_number UI.verbose("build_version: #{build.build_version} doesn't match: #{build_number}") next end UI.verbose("Build_version: #{build.build_version} matches #{build_number}, grabbing dsym_url") if build_number start = Time.now download_url = nil loop do begin build_details = app.tunes_build_details(train: train.version_string, build_number: build.build_version, platform: platform) download_url = build_details.dsym_url UI.verbose("dsym_url: #{download_url}") rescue Spaceship::TunesClient::ITunesConnectError => ex UI.error("Error accessing dSYM file for build\n\n#{build}\n\nException: #{ex}") end unless download_url if !wait_for_dsym_processing || (Time.now - start) > wait_timeout # In some cases, AppStoreConnect does not process the dSYMs, thus no error should be thrown. UI.("Could not find any dSYM for #{build.build_version} (#{train.version_string})") else UI.("Waiting for dSYM file to appear...") sleep(30) next end end break end if download_url self.download(download_url, app.bundle_id, train.version_string, build.build_version, output_directory) break if build_number else UI.("No dSYM URL for #{build.build_version} (#{train.version_string})") end end end if (Actions.lane_context[SharedValues::DSYM_PATHS] || []).count == 0 UI.error("No dSYM files found on App Store Connect - this usually happens when no recompiling has happened yet") end end |
.write_dsym(data, bundle_id, train_number, build_number, output_directory) ⇒ Object
156 157 158 159 160 161 162 163 |
# File 'fastlane/lib/fastlane/actions/download_dsyms.rb', line 156 def self.write_dsym(data, bundle_id, train_number, build_number, output_directory) file_name = "#{bundle_id}-#{train_number}-#{build_number}.dSYM.zip" if output_directory file_name = output_directory + file_name end File.binwrite(file_name, data) file_name end |