Class: Fastlane::Actions::SpmAction
- Inherits:
-
Fastlane::Action
- Object
- Fastlane::Action
- Fastlane::Actions::SpmAction
- Defined in:
- fastlane/lib/fastlane/actions/spm.rb
Constant Summary
Constants inherited from Fastlane::Action
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Documentation collapse
- .authors ⇒ Object
- .available_commands ⇒ Object
- .available_options ⇒ Object
- .category ⇒ Object
- .description ⇒ Object
- .example_code ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .package_commands ⇒ Object
- .valid_configurations ⇒ Object
- .xcpretty_output_types ⇒ Object
Class Method Summary collapse
Methods inherited from Fastlane::Action
action_name, author, deprecated_notes, details, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
94 95 96 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 94 def self. ["fjcaetano", "nxtstep"] end |
.available_commands ⇒ Object
121 122 123 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 121 def self.available_commands %w(build test) + self.package_commands end |
.available_options ⇒ Object
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 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 38 def self. [ FastlaneCore::ConfigItem.new(key: :command, env_name: "FL_SPM_COMMAND", description: "The swift command (one of: #{available_commands.join(', ')})", default_value: "build", verify_block: proc do |value| UI.user_error!("Please pass a valid command. Use one of the following: #{available_commands.join(', ')}") unless available_commands.include?(value) end), FastlaneCore::ConfigItem.new(key: :build_path, env_name: "FL_SPM_BUILD_PATH", description: "Specify build/cache directory [default: ./.build]", optional: true), FastlaneCore::ConfigItem.new(key: :package_path, env_name: "FL_SPM_PACKAGE_PATH", description: "Change working directory before any other operation", optional: true), FastlaneCore::ConfigItem.new(key: :xcconfig, env_name: "FL_SPM_XCCONFIG", description: "Use xcconfig file to override swift package generate-xcodeproj defaults", optional: true), FastlaneCore::ConfigItem.new(key: :configuration, short_option: "-c", env_name: "FL_SPM_CONFIGURATION", description: "Build with configuration (debug|release) [default: debug]", optional: true, verify_block: proc do |value| UI.user_error!("Please pass a valid configuration: (debug|release)") unless valid_configurations.include?(value) end), FastlaneCore::ConfigItem.new(key: :disable_sandbox, env_name: "FL_SPM_DISABLE_SANDBOX", description: "Disable using the sandbox when executing subprocesses", optional: true, is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :xcpretty_output, env_name: "FL_SPM_XCPRETTY_OUTPUT", description: "Specifies the output type for xcpretty. eg. 'test', or 'simple'", optional: true, verify_block: proc do |value| UI.user_error!("Please pass a valid xcpretty output type: (#{xcpretty_output_types.join('|')})") unless xcpretty_output_types.include?(value) end), FastlaneCore::ConfigItem.new(key: :xcpretty_args, env_name: "FL_SPM_XCPRETTY_ARGS", description: "Pass in xcpretty additional command line arguments (e.g. '--test --no-color' or '--tap --no-utf'), requires xcpretty_output to be specified also", type: String, optional: true), FastlaneCore::ConfigItem.new(key: :verbose, short_option: "-v", env_name: "FL_SPM_VERBOSE", description: "Increase verbosity of informational output", is_string: false, default_value: false) ] end |
.category ⇒ Object
117 118 119 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 117 def self.category :building end |
.description ⇒ Object
34 35 36 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 34 def self.description "Runs Swift Package Manager on your project" end |
.example_code ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 102 def self.example_code [ 'spm', 'spm( command: "build", build_path: "./build", configuration: "release" )', 'spm( command: "generate-xcodeproj", xcconfig: "Package.xcconfig" )' ] end |
.is_supported?(platform) ⇒ Boolean
98 99 100 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 98 def self.is_supported?(platform) true end |
.package_commands ⇒ Object
125 126 127 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 125 def self.package_commands %w(clean reset update resolve generate-xcodeproj init) end |
.run(params) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 4 def self.run(params) cmd = ["swift"] cmd << (package_commands.include?(params[:command]) ? "package" : params[:command]) cmd << "--build-path #{params[:build_path]}" if params[:build_path] cmd << "--package-path #{params[:package_path]}" if params[:package_path] cmd << "--configuration #{params[:configuration]}" if params[:configuration] cmd << "--disable-sandbox" if params[:disable_sandbox] cmd << "--verbose" if params[:verbose] cmd << params[:command] if package_commands.include?(params[:command]) if params[:xcconfig] cmd << "--xcconfig-overrides #{params[:xcconfig]}" end if params[:xcpretty_output] cmd += ["2>&1", "|", "xcpretty", "--#{params[:xcpretty_output]}"] if params[:xcpretty_args] cmd << (params[:xcpretty_args]).to_s end cmd = %w(set -o pipefail &&) + cmd end FastlaneCore::CommandExecutor.execute(command: cmd.join(" "), print_all: true, print_command: true) end |
.valid_configurations ⇒ Object
129 130 131 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 129 def self.valid_configurations %w(debug release) end |
.xcpretty_output_types ⇒ Object
133 134 135 |
# File 'fastlane/lib/fastlane/actions/spm.rb', line 133 def self.xcpretty_output_types %w(simple test knock tap) end |