Module: CapsuleCD::Runner::Default
- Defined in:
- lib/capsulecd/base/runner/default.rb
Instance Method Summary collapse
-
#runner_retrieve_payload(_opts) ⇒ Object
TODO: this needs to be fleshed out/working.
Instance Method Details
#runner_retrieve_payload(_opts) ⇒ Object
TODO: this needs to be fleshed out/working. ie. Jenkins, Bamboo, GoCD, Drone, other self hosted services
5 6 7 8 9 10 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 |
# File 'lib/capsulecd/base/runner/default.rb', line 5 def runner_retrieve_payload(_opts) puts 'default runner_retrieve_payload' # capsulecd only works with github, no need to parse @options[:source] # since we're the default handler, we have to verify that the required configuration options are available if @config.runner_pull_request.to_s.empty? puts 'This is not a pull request. No automatic continuous deployment processing required. Continuous Integration testing will continue.' @runner_is_pullrequest = false # make this as similar to the pull request payload as possible. payload = { 'head' => { 'sha' => @config.runner_sha, 'ref' => @config.runner_branch, 'repo' => { 'clone_url' => @config.runner_clone_url, 'name' => @config.runner_repo_name, 'full_name' => @config.runner_repo_full_name } } } payload else @runner_is_pullrequest = true pull_request_number = @config.runner_pull_request.to_i @source_client.pull_request(@config.runner_repo_full_name, pull_request_number) end end |