Class: Fastlane::Actions::MakeChangelogFromJenkinsAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/make_changelog_from_jenkins.rb

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, return_value, sh, step_text

Class Method Details

.authorsObject



50
51
52
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 50

def self.authors
  ["mandrizzle"]
end

.available_optionsObject



35
36
37
38
39
40
41
42
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 35

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :fallback_changelog,
                                 description: "Fallback changelog if there is not one on Jenkins, or it couldn't be read",
                                 optional: true,
                                 default_value: "")
  ]
end

.descriptionObject



27
28
29
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 27

def self.description
  "Generate a changelog using the Changes section from the current Jenkins build"
end

.detailsObject



31
32
33
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 31

def self.details
  "This is useful when deploying automated builds. The changelog from Jenkins lists all the commit messages since the last build."
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


54
55
56
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 54

def self.is_supported?(platform)
  true
end

.outputObject



44
45
46
47
48
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 44

def self.output
  [
    ['FL_CHANGELOG', 'The changelog generated by Jenkins']
  ]
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
# File 'lib/fastlane/actions/make_changelog_from_jenkins.rb', line 4

def self.run(params)
  require 'json'
  require 'net/http'

  changelog = ""

  if Helper.is_ci? || Helper.is_test?
    # The "BUILD_URL" environment variable is set automatically by Jenkins in every build
    jenkins_xml_url = URI(ENV["BUILD_URL"] + "api/json\?wrapper\=changes\&xpath\=//changeSet//comment")
    begin
      json = JSON.parse(Net::HTTP.get(jenkins_xml_url))
      json['changeSet']['items'].each do |item|
        comment = item['comment']
        changelog << comment.strip + "\n"
      end
    rescue => ex
      UI.error("Unable to read/parse changelog from jenkins: #{ex.message}")
    end
  end

  Actions.lane_context[SharedValues::FL_CHANGELOG] = changelog.strip.length > 0 ? changelog : params[:fallback_changelog]
end