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



22
23
24
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 22

def 
  raise 'Not implemented'
end

#organizationString

Organization

Returns:

  • (String)

    The organization the repository belongs to



30
31
32
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 30

def organization
  raise 'Not implemented'
end

#repositoryString

Repository

Returns:

  • (String)

    The repository name



38
39
40
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 38

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



14
15
16
# File 'lib/fastlane/plugin/wpmreleasetoolkit/helper/ci_helper.rb', line 14

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