Class: FastlaneCore::Project
- Inherits:
-
Object
- Object
- FastlaneCore::Project
- Defined in:
- fastlane_core/lib/fastlane_core/project.rb
Overview
Represents an Xcode project
Instance Attribute Summary collapse
-
#is_workspace ⇒ Object
Is this project a workspace?.
-
#path ⇒ Object
Path to the project/workspace.
Raw Access collapse
-
.run_command(command, timeout: 0, retries: 0, print: true) ⇒ Object
runs the specified command with the specified number of retries, killing each run if it times out.
- .xcode_build_settings_retries ⇒ Object
- .xcode_build_settings_timeout ⇒ Object
-
#build_settings(key: nil, optional: true) ⇒ Object
Get the build settings for our project e.g.
- #build_xcodebuild_resolvepackagedependencies_command ⇒ Object
- #build_xcodebuild_showbuildsettings_command ⇒ Object
-
#default_build_settings(key: nil, optional: true) ⇒ Object
Returns the build settings and sets the default scheme to the options hash.
-
#project_paths ⇒ Object
Array of paths to all project files (might be multiple, because of workspaces).
- #xcodebuild_destination_parameter ⇒ Object
Class Method Summary collapse
-
.detect_projects(config) ⇒ Object
Project discovery.
- .select_project(config) ⇒ Object
Instance Method Summary collapse
- #app_name ⇒ Object
- #application? ⇒ Boolean
- #command_line_tool? ⇒ Boolean
-
#configurations ⇒ Object
Get all available configurations in an array.
-
#default_app_identifier ⇒ Object
Returns bundle_id and sets the scheme for xcrun.
-
#default_app_name ⇒ Object
Returns app name and sets the scheme for xcrun.
- #dynamic_library? ⇒ Boolean
- #framework? ⇒ Boolean
-
#initialize(options) ⇒ Project
constructor
A new instance of Project.
- #ios? ⇒ Boolean
- #ios_app? ⇒ Boolean
- #ios_framework? ⇒ Boolean
- #ios_library? ⇒ Boolean
- #ios_tvos_app? ⇒ Boolean
- #library? ⇒ Boolean
- #mac? ⇒ Boolean
- #mac_app? ⇒ Boolean
- #mac_framework? ⇒ Boolean
- #mac_library? ⇒ Boolean
- #multiplatform? ⇒ Boolean
-
#options ⇒ Hash
A hash object containing project, workspace, scheme, any configuration related to xcodebuild, or etc…
- #options=(new_value) ⇒ Object
- #produces_archive? ⇒ Boolean
-
#project ⇒ Object
returns the Xcodeproj::Project or nil if it is a workspace.
- #project_name ⇒ Object
-
#schemes ⇒ Object
Get all available schemes in an array.
-
#select_scheme(preferred_to_include: nil) ⇒ Object
Let the user select a scheme Use a scheme containing the preferred_to_include string when multiple schemes were found.
- #show_scheme_shared_information ⇒ Object
- #static_library? ⇒ Boolean
- #supported_platforms ⇒ Object
- #supports_mac_catalyst? ⇒ Boolean
- #tvos? ⇒ Boolean
- #visionos? ⇒ Boolean
- #watchos? ⇒ Boolean
-
#workspace ⇒ Object
returns the Xcodeproj::Workspace or nil if it is a project.
- #workspace? ⇒ Boolean
- #xcodebuild_parameters ⇒ Object
Constructor Details
#initialize(options) ⇒ Project
Returns a new instance of Project.
74 75 76 77 78 79 80 81 82 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 74 def initialize() @options = @path = File.(self.[:workspace] || self.[:project]) @is_workspace = (self.[:workspace].to_s.length > 0) if !path || !File.directory?(path) UI.user_error!("Could not find project at path '#{path}'") end end |
Instance Attribute Details
#is_workspace ⇒ Object
Is this project a workspace?
69 70 71 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 69 def is_workspace @is_workspace end |
#path ⇒ Object
Path to the project/workspace
66 67 68 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 66 def path @path end |
Class Method Details
.detect_projects(config) ⇒ Object
Project discovery
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 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 11 def detect_projects(config) if config[:workspace].to_s.length > 0 && config[:project].to_s.length > 0 UI.user_error!("You can only pass either a workspace or a project path, not both") end return if config[:project].to_s.length > 0 if config[:workspace].to_s.length == 0 workspace = Dir["./*.xcworkspace"] if workspace.count > 1 puts("Select Workspace: ") config[:workspace] = choose(*workspace) elsif !workspace.first.nil? config[:workspace] = workspace.first end end return if config[:workspace].to_s.length > 0 if config[:workspace].to_s.length == 0 && config[:project].to_s.length == 0 project = Dir["./*.xcodeproj"] if project.count > 1 puts("Select Project: ") config[:project] = choose(*project) elsif !project.first.nil? config[:project] = project.first end end if config[:workspace].nil? && config[:project].nil? select_project(config) end end |
.run_command(command, timeout: 0, retries: 0, print: true) ⇒ Object
runs the specified command with the specified number of retries, killing each run if it times out. the first run times out after specified timeout elapses, and each successive run times out after a doubling of the previous timeout has elapsed. Note: - currently affected by github.com/fastlane/fastlane/issues/1504
- retry feature added to solve https://github.com/fastlane/fastlane/issues/4059
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 484 def self.run_command(command, timeout: 0, retries: 0, print: true) require 'timeout' UI.command(command) if print result = '' total_tries = retries + 1 try = 1 try_timeout = timeout begin Timeout.timeout(try_timeout) do # Using Helper.backticks didn't work here. `Timeout` doesn't time out, and the command hangs forever result = `#{command}`.to_s end rescue Timeout::Error try_limit_reached = try >= total_tries # Try harder on each iteration next_timeout = try_timeout * 2 = "Command timed out after #{try_timeout} seconds on try #{try} of #{total_tries}" += ", trying again with a #{next_timeout} second timeout..." unless try_limit_reached UI.important() raise if try_limit_reached try += 1 try_timeout = next_timeout retry end return result end |
.select_project(config) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 45 def select_project(config) loop do path = UI.input("Couldn't automatically detect the project file, please provide a path: ") if File.directory?(path) if path.end_with?(".xcworkspace") config[:workspace] = path break elsif path.end_with?(".xcodeproj") config[:project] = path break else UI.error("Path must end with either .xcworkspace or .xcodeproj") end else UI.error("Couldn't find project at path '#{File.(path)}'") end end end |
.xcode_build_settings_retries ⇒ Object
472 473 474 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 472 def self.xcode_build_settings_retries (ENV['FASTLANE_XCODEBUILD_SETTINGS_RETRIES'] || 3).to_i end |
.xcode_build_settings_timeout ⇒ Object
467 468 469 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 467 def self.xcode_build_settings_timeout (ENV['FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT'] || 3).to_i end |
Instance Method Details
#app_name ⇒ Object
225 226 227 228 229 230 231 232 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 225 def app_name # WRAPPER_NAME: Example.app # WRAPPER_SUFFIX: .app name = build_settings(key: "WRAPPER_NAME") return name.gsub(build_settings(key: "WRAPPER_SUFFIX"), "") if name return "App" # default value end |
#application? ⇒ Boolean
250 251 252 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 250 def application? (build_settings(key: "PRODUCT_TYPE") == "com.apple.product-type.application") end |
#build_settings(key: nil, optional: true) ⇒ Object
Get the build settings for our project e.g. to properly get the DerivedData folder
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 403 def build_settings(key: nil, optional: true) unless @build_settings if is_workspace if schemes.count == 0 UI.user_error!("Could not find any schemes for Xcode workspace at path '#{self.path}'. Please make sure that the schemes you want to use are marked as `Shared` from Xcode.") end [:scheme] ||= schemes.first end # SwiftPM support if FastlaneCore::Helper.xcode_at_least?('11.0') if (command = build_xcodebuild_resolvepackagedependencies_command) UI.important("Resolving Swift Package Manager dependencies...") FastlaneCore::CommandExecutor.execute( command: command, print_all: true, print_command: true ) else UI.important("Skipped Swift Package Manager dependencies resolution.") end end command = build_xcodebuild_showbuildsettings_command # Xcode might hang here and retrying fixes the problem, see fastlane#4059 begin timeout = FastlaneCore::Project.xcode_build_settings_timeout retries = FastlaneCore::Project.xcode_build_settings_retries @build_settings = FastlaneCore::Project.run_command(command, timeout: timeout, retries: retries, print: true) if @build_settings.empty? UI.error("Could not read build settings. Make sure that the scheme \"#{[:scheme]}\" is configured for running by going to Product → Scheme → Edit Scheme…, selecting the \"Build\" section, checking the \"Run\" checkbox and closing the scheme window.") end rescue Timeout::Error raise FastlaneCore::Interface::FastlaneDependencyCausedException.new, "xcodebuild -showBuildSettings timed out after #{retries + 1} retries with a base timeout of #{timeout}." \ " You can override the base timeout value with the environment variable FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT," \ " and the number of retries with the environment variable FASTLANE_XCODEBUILD_SETTINGS_RETRIES ".red end end begin result = @build_settings.split("\n").find do |c| sp = c.split(" = ") next if sp.length == 0 sp.first.strip == key end return result.split(" = ").last rescue => ex return nil if optional # an optional value, we really don't care if something goes wrong UI.error(caller.join("\n\t")) UI.error("Could not fetch #{key} from project file: #{ex}") end nil end |
#build_xcodebuild_resolvepackagedependencies_command ⇒ Object
377 378 379 380 381 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 377 def build_xcodebuild_resolvepackagedependencies_command return nil if [:skip_package_dependencies_resolution] command = "xcodebuild -resolvePackageDependencies #{xcodebuild_parameters.join(' ')}#{xcodebuild_destination_parameter}" command end |
#build_xcodebuild_showbuildsettings_command ⇒ Object
362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 362 def build_xcodebuild_showbuildsettings_command # We also need to pass the workspace and scheme to this command. # # The 'clean' portion of this command was a workaround for an xcodebuild bug with Core Data projects. # This xcodebuild bug is fixed in Xcode 8.3 so 'clean' it's not necessary anymore # See: https://github.com/fastlane/fastlane/pull/5626 if FastlaneCore::Helper.xcode_at_least?('8.3') command = "xcodebuild -showBuildSettings #{xcodebuild_parameters.join(' ')}#{xcodebuild_destination_parameter}" else command = "xcodebuild clean -showBuildSettings #{xcodebuild_parameters.join(' ')}" end command = "#{command} 2>&1" # xcodebuild produces errors on stderr #21672 command end |
#command_line_tool? ⇒ Boolean
290 291 292 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 290 def command_line_tool? (build_settings(key: "PRODUCT_TYPE") == "com.apple.product-type.tool") end |
#configurations ⇒ Object
Get all available configurations in an array
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 187 def configurations @configurations ||= if workspace? workspace .file_references .map(&:path) .reject { |p| p.include?("Pods/Pods.xcodeproj") } .map do |p| # To maintain backwards compatibility, we # silently ignore nonexistent projects from # workspaces. begin Xcodeproj::Project.open(p).build_configurations rescue [] end end .flatten .compact .map(&:name) else project.build_configurations.map(&:name) end end |
#default_app_identifier ⇒ Object
Returns bundle_id and sets the scheme for xcrun
212 213 214 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 212 def default_app_identifier default_build_settings(key: "PRODUCT_BUNDLE_IDENTIFIER") end |
#default_app_name ⇒ Object
Returns app name and sets the scheme for xcrun
217 218 219 220 221 222 223 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 217 def default_app_name if is_workspace return default_build_settings(key: "PRODUCT_NAME") else return app_name end end |
#default_build_settings(key: nil, optional: true) ⇒ Object
Returns the build settings and sets the default scheme to the options hash
461 462 463 464 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 461 def default_build_settings(key: nil, optional: true) [:scheme] ||= schemes.first if is_workspace build_settings(key: key, optional: optional) end |
#dynamic_library? ⇒ Boolean
234 235 236 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 234 def dynamic_library? (build_settings(key: "PRODUCT_TYPE") == "com.apple.product-type.library.dynamic") end |
#framework? ⇒ Boolean
246 247 248 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 246 def framework? (build_settings(key: "PRODUCT_TYPE") == "com.apple.product-type.framework") end |
#ios? ⇒ Boolean
302 303 304 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 302 def ios? supported_platforms.include?(:iOS) end |
#ios_app? ⇒ Boolean
266 267 268 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 266 def ios_app? (application? && build_settings(key: "PLATFORM_NAME") == "iphoneos") end |
#ios_framework? ⇒ Boolean
262 263 264 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 262 def ios_framework? (framework? && build_settings(key: "PLATFORM_NAME") == "iphoneos") end |
#ios_library? ⇒ Boolean
254 255 256 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 254 def ios_library? ((static_library? or dynamic_library?) && build_settings(key: "PLATFORM_NAME") == "iphoneos") end |
#ios_tvos_app? ⇒ Boolean
258 259 260 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 258 def ios_tvos_app? (ios? || tvos?) end |
#library? ⇒ Boolean
242 243 244 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 242 def library? (static_library? || dynamic_library?) end |
#mac? ⇒ Boolean
294 295 296 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 294 def mac? supported_platforms.include?(:macOS) end |
#mac_app? ⇒ Boolean
274 275 276 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 274 def mac_app? (application? && build_settings(key: "PLATFORM_NAME") == "macosx") end |
#mac_framework? ⇒ Boolean
282 283 284 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 282 def mac_framework? (framework? && build_settings(key: "PLATFORM_NAME") == "macosx") end |
#mac_library? ⇒ Boolean
278 279 280 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 278 def mac_library? ((dynamic_library? or static_library?) && build_settings(key: "PLATFORM_NAME") == "macosx") end |
#multiplatform? ⇒ Boolean
314 315 316 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 314 def multiplatform? supported_platforms.count > 1 end |
#options ⇒ Hash
Returns a hash object containing project, workspace, scheme, any configuration related to xcodebuild, or etc…
85 86 87 88 89 90 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 85 def # To keep compatibility with actions using this class from outside of `fastlane` gem; i.e. `xcov`, # converts `options` to a plain Hash. Otherwise, it might crash when a new option's key is added # due to `FastlaneCore::Configuration` to validate valid keys defined. @options.kind_of?(FastlaneCore::Configuration) ? @options.values : @options end |
#options=(new_value) ⇒ Object
92 93 94 95 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 92 def (new_value) UI.deprecated('Update `options` is not worth doing since it can change behavior of this object entirely. Consider re-creating FastlaneCore::Project.') @options = new_value end |
#produces_archive? ⇒ Boolean
270 271 272 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 270 def produces_archive? !(framework? || static_library? || dynamic_library?) end |
#project ⇒ Object
returns the Xcodeproj::Project or nil if it is a workspace
118 119 120 121 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 118 def project return nil if workspace? @project ||= Xcodeproj::Project.open(path) end |
#project_name ⇒ Object
101 102 103 104 105 106 107 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 101 def project_name if is_workspace return File.basename([:workspace], ".xcworkspace") else return File.basename([:project], ".xcodeproj") end end |
#project_paths ⇒ Object
Array of paths to all project files (might be multiple, because of workspaces)
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 522 def project_paths return @_project_paths if @_project_paths if self.workspace? # Find the xcodeproj file, as the information isn't included in the workspace file # We have a reference to the workspace, let's find the xcodeproj file # Use Xcodeproj gem here to # * parse the contents.xcworkspacedata XML file # * handle different types (group:, container: etc.) of file references and their paths # for details see https://github.com/CocoaPods/Xcodeproj/blob/e0287156d426ba588c9234bb2a4c824149889860/lib/xcodeproj/workspace/file_reference.rb``` workspace_dir_path = File.("..", self.path) file_references_paths = workspace.file_references.map { |fr| fr.absolute_path(workspace_dir_path) } @_project_paths = file_references_paths.select do |current_match| # Xcode workspaces can contain loose files now, so let's filter non-xcodeproj files. current_match.end_with?(".xcodeproj") end.reject do |current_match| # We're not interested in a `Pods` project, as it doesn't contain any relevant information about code signing current_match.end_with?("Pods/Pods.xcodeproj") end return @_project_paths else # Return the path as an array return @_project_paths = [path] end end |
#schemes ⇒ Object
Get all available schemes in an array
124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 124 def schemes @schemes ||= if workspace? if FastlaneCore::Env.truthy?("FASTLANE_INCLUDE_PODS_PROJECT_SCHEMES") workspace.schemes.keys else workspace.schemes.reject do |k, v| v.include?("Pods/Pods.xcodeproj") end.keys end else Xcodeproj::Project.schemes(path) end end |
#select_scheme(preferred_to_include: nil) ⇒ Object
Let the user select a scheme Use a scheme containing the preferred_to_include string when multiple schemes were found
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 140 def select_scheme(preferred_to_include: nil) if [:scheme].to_s.length > 0 # Verify the scheme is available unless schemes.include?([:scheme].to_s) UI.error("Couldn't find specified scheme '#{[:scheme]}'. Please make sure that the scheme is shared, see https://developer.apple.com/library/content/documentation/IDEs/Conceptual/xcode_guide-continuous_integration/ConfigureBots.html#//apple_ref/doc/uid/TP40013292-CH9-SW3") [:scheme] = nil end end return if [:scheme].to_s.length > 0 if schemes.count == 1 [:scheme] = schemes.last elsif schemes.count > 1 preferred = nil if preferred_to_include preferred = schemes.find_all { |a| a.downcase.include?(preferred_to_include.downcase) } end if preferred_to_include && preferred.count == 1 [:scheme] = preferred.last elsif automated_scheme_selection? && schemes.include?(project_name) UI.important("Using scheme matching project name (#{project_name}).") [:scheme] = project_name elsif Helper.ci? UI.error("Multiple schemes found but you haven't specified one.") UI.error("Since this is a CI, please pass one using the `scheme` option") show_scheme_shared_information UI.user_error!("Multiple schemes found") else puts("Select Scheme: ") [:scheme] = choose(*schemes) end else show_scheme_shared_information UI.user_error!("No Schemes found") end end |
#show_scheme_shared_information ⇒ Object
180 181 182 183 184 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 180 def show_scheme_shared_information UI.error("Couldn't find any schemes in this project, make sure that the scheme is shared if you are using a workspace") UI.error("Open Xcode, click on `Manage Schemes` and check the `Shared` box for the schemes you want to use") UI.error("Afterwards make sure to commit the changes into version control") end |
#static_library? ⇒ Boolean
238 239 240 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 238 def static_library? (build_settings(key: "PRODUCT_TYPE") == "com.apple.product-type.library.static") end |
#supported_platforms ⇒ Object
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 318 def supported_platforms supported_platforms = build_settings(key: "SUPPORTED_PLATFORMS") if supported_platforms.nil? UI.important("Could not read the \"SUPPORTED_PLATFORMS\" build setting, assuming that the project supports iOS only.") return [:iOS] end supported_platforms.split.map do |platform| case platform when "macosx" then :macOS when "iphonesimulator", "iphoneos" then :iOS when "watchsimulator", "watchos" then :watchOS when "appletvsimulator", "appletvos" then :tvOS when "xros", "xrsimulator" then :visionOS end end.uniq.compact end |
#supports_mac_catalyst? ⇒ Boolean
286 287 288 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 286 def supports_mac_catalyst? build_settings(key: "SUPPORTS_MACCATALYST") == "YES" || build_settings(key: "SUPPORTS_UIKITFORMAC") == "YES" end |
#tvos? ⇒ Boolean
298 299 300 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 298 def tvos? supported_platforms.include?(:tvOS) end |
#visionos? ⇒ Boolean
310 311 312 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 310 def visionos? supported_platforms.include?(:visionOS) end |
#watchos? ⇒ Boolean
306 307 308 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 306 def watchos? supported_platforms.include?(:watchOS) end |
#workspace ⇒ Object
returns the Xcodeproj::Workspace or nil if it is a project
110 111 112 113 114 115 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 110 def workspace return nil unless workspace? @workspace ||= Xcodeproj::Workspace.new_from_xcworkspace(path) @workspace end |
#workspace? ⇒ Boolean
97 98 99 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 97 def workspace? self.is_workspace end |
#xcodebuild_destination_parameter ⇒ Object
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 383 def xcodebuild_destination_parameter # Xcode13+ xcodebuild command 'without destination parameter' generates annoying warnings # See: https://github.com/fastlane/fastlane/issues/19579 destination_parameter = "" xcode_at_least_13 = FastlaneCore::Helper.xcode_at_least?("13") if xcode_at_least_13 && [:destination] begin destination_parameter = " " + "-destination #{[:destination].shellescape}" rescue => ex # xcodebuild command can continue without destination parameter, so # we really don't care about this exception if something goes wrong with shellescape UI.important("Failed to set destination parameter for xcodebuild command: #{ex}") end end destination_parameter end |
#xcodebuild_parameters ⇒ Object
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
# File 'fastlane_core/lib/fastlane_core/project.rb', line 335 def xcodebuild_parameters proj = [] proj << "-workspace #{[:workspace].shellescape}" if [:workspace] proj << "-scheme #{[:scheme].shellescape}" if [:scheme] proj << "-project #{[:project].shellescape}" if [:project] proj << "-configuration #{[:configuration].shellescape}" if [:configuration] proj << "-derivedDataPath #{[:derived_data_path].shellescape}" if [:derived_data_path] proj << "-xcconfig #{[:xcconfig].shellescape}" if [:xcconfig] proj << "-scmProvider system" if [:use_system_scm] proj << "-packageAuthorizationProvider #{[:package_authorization_provider].shellescape}" if [:package_authorization_provider] xcode_at_least_11 = FastlaneCore::Helper.xcode_at_least?('11.0') if xcode_at_least_11 && [:cloned_source_packages_path] proj << "-clonedSourcePackagesDirPath #{[:cloned_source_packages_path].shellescape}" end if xcode_at_least_11 && [:disable_package_automatic_updates] proj << "-disableAutomaticPackageResolution" end return proj end |