class Fastlane::Actions::SetupCircleCiAction
Public Class Methods
available_options()
click to toggle source
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 29 def self.available_options [ FastlaneCore::ConfigItem.new(key: :force, env_name: "FL_SETUP_CIRCLECI_FORCE", description: "Force setup, even if not executed by CircleCI", type: Boolean, default_value: false) ] end
category()
click to toggle source
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 53 def self.category :misc end
description()
click to toggle source
@!group Documentation
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 12 def self.description "Setup the keychain and match to work with CircleCI" end
details()
click to toggle source
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 16 def self.details list = <<-LIST.markdown_list(true) Creates a new temporary keychain for use with match Switches match to `readonly` mode to not create new profiles/cert on CI Sets up log and test result paths to be easily collectible LIST [ list, "This action helps with CircleCI integration. Add this to the top of your Fastfile if you use CircleCI." ].join("\n") end
example_code()
click to toggle source
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 47 def self.example_code [ 'setup_circle_ci' ] end
is_supported?(platform)
click to toggle source
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 43 def self.is_supported?(platform) true end
run(params)
click to toggle source
# File fastlane/lib/fastlane/actions/setup_circle_ci.rb, line 4 def self.run(params) other_action.setup_ci(provider: "circleci", force: params[:force]) end