Module: CIHelper

Included in:
Fastlane::Helper::CircleCIHelper
Defined in:
lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb

Instance Method Summary collapse

Instance Method Details

#loginString

Login

Returns:

  • (String)

    The CI login credentials



20
21
22
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 20

def 
  raise 'Not implemented'
end

#organizationString

Organization

Returns:

  • (String)

    The organization the repository belongs to



28
29
30
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 28

def organization
  raise 'Not implemented'
end

#repositoryString

Repository

Returns:

  • (String)

    The repository name



36
37
38
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 36

def repository
  raise 'Not implemented'
end

#trigger_job(branch:, parameters: nil) ⇒ Object

Triggers a job on CI

Parameters:

  • branch (String)

    The branch on which the job should run

  • parameters (Hash) (defaults to: nil)

    CI provider specific parameters



12
13
14
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 12

def trigger_job(branch:, parameters: nil)
  raise 'Not implemented'
end