Skip to content

Commit

Permalink
Merge d6bc4b5 into c582370
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverNocon committed Oct 17, 2018
2 parents c582370 + d6bc4b5 commit 76d3a83
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions vars/commonPipelineEnvironment.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ class commonPipelineEnvironment implements Serializable {
//stores the gitCommitId as well as additional git information for the build during pipeline run
String gitCommitId
String gitSshUrl
String gitHttpsUrl
String gitBranch

//GiutHub specific information
String githubOrg
String githubRepo

//stores properties for a pipeline which build an artifact and then bundles it into a container
private Map appContainerProperties = [:]
Expand All @@ -30,6 +36,11 @@ class commonPipelineEnvironment implements Serializable {

gitCommitId = null
gitSshUrl = null
gitHttpsUrl = null
gitBranch = null

githubOrg = null
githubRepo = null

influxCustomData = [:]
influxCustomDataMap = [pipeline_data: [:], step_data: [:]]
Expand Down

0 comments on commit 76d3a83

Please sign in to comment.