File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def self.configuration
26
26
set_service_params_for_circleci ( config )
27
27
elsif ENV [ 'SEMAPHORE' ]
28
28
set_service_params_for_semaphore ( config )
29
- elsif ENV [ 'JENKINS_URL' ]
29
+ elsif ENV [ 'JENKINS_URL' ] || ENV [ 'JENKINS_HOME' ]
30
30
set_service_params_for_jenkins ( config )
31
31
elsif ENV [ 'APPVEYOR' ]
32
32
set_service_params_for_appveyor ( config )
@@ -72,6 +72,8 @@ def self.set_service_params_for_semaphore(config)
72
72
def self . set_service_params_for_jenkins ( config )
73
73
config [ :service_name ] = 'jenkins'
74
74
config [ :service_number ] = ENV [ 'BUILD_NUMBER' ]
75
+ config [ :service_branch ] = ENV [ 'BRANCH_NAME' ]
76
+ config [ :service_pull_request ] = ENV [ 'ghprbPullId' ]
75
77
end
76
78
77
79
def self . set_service_params_for_appveyor ( config )
Original file line number Diff line number Diff line change 1
1
module Coveralls
2
- VERSION = "0.8.20 "
2
+ VERSION = "0.8.21 "
3
3
end
You can’t perform that action at this time.
0 commit comments