jenkins_pipeline_builder 0.10.7 → 0.10.8
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MGYzYTA1YjUyZmViMzkwMTdiODdhZjhlM2YzMmJhYzY1Y2Y0NDlmYg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjIzZjFkZGY2ZDk3MGIxYzQ2MTFiMzI1MDllY2RiMTkxOGY2NDljNA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZjQ1YjI2YzYxZjgxMzRkNzNlOWEzY2VkZDYzOGUxZGRhY2E2YjgyNTExNTBj
|
10
|
+
YmQ4N2U4ZjA3NWI3NDdkMzU3NzJmZTI3M2RjMDQ1OWY3YjZmYjJjNzM5NzE1
|
11
|
+
NTZhYjNmYmVlOTdkNzY1YzNiNWM3NTlkY2Q3NWY2ZmQ1ZjZkYjE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZjI4MTkwNDFhMWYwMDdhMGY4YTBhN2NjZjBkNmE2ODY3MGJhYWIwYjY1MTgx
|
14
|
+
ZDhhNDQ3YTkzMTA2OWYyY2Q1ZTA5OWU5YmQ4MDdjYmM1YzMzY2RmNzJjMzcx
|
15
|
+
Y2U4YTAyYmExNjAwMWFiYTVjYzRiYmI1NGJmMzVjZGVkNzdlYzY=
|
@@ -225,6 +225,38 @@ publisher do
|
|
225
225
|
end
|
226
226
|
end
|
227
227
|
|
228
|
+
publisher do
|
229
|
+
name :performance_plugin
|
230
|
+
plugin_id 'performance'
|
231
|
+
description 'JMeter Performance Plugin'
|
232
|
+
jenkins_name 'JMeter Performance Plugin'
|
233
|
+
announced false
|
234
|
+
|
235
|
+
xml do |params|
|
236
|
+
send 'hudson.plugins.performance.PerformancePublisher' do
|
237
|
+
errorFailedThreshold params[:errorFailedThreshold] || '0'
|
238
|
+
errorUnstableThreshold params[:errorUnstableThreshold] || '0'
|
239
|
+
errorUnstableResponseTimeThreshold params[:errorUnstableResponseTimeThreshold]
|
240
|
+
relativeFailedThresholdPositive params[:relativeFailedThresholdPositive] || '0.0'
|
241
|
+
relativeFailedThresholdNegative params[:relativeFailedThresholdNegative] || '0.0'
|
242
|
+
relativeUnstableThresholdPositive params[:relativeUnstableThresholdPositive] || '0.0'
|
243
|
+
relativeUnstableThresholdNegative params[:relativeUnstableThresholdNegative] || '0.0'
|
244
|
+
nthBuildNumber params[:nthBuildNumber] || '0'
|
245
|
+
modeRelativeThresholds params[:modeRelativeThresholds] || 'false'
|
246
|
+
configType params[:configType] || 'ART'
|
247
|
+
modeOfThreshold params[:modeOfThreshold] || 'false'
|
248
|
+
compareBuildPrevious params[:compareBuildPrevious] || 'false'
|
249
|
+
modePerformancePerTestCase params[:modePerformancePerTestCase] || 'true'
|
250
|
+
send 'parsers' do
|
251
|
+
send 'hudson.plugins.performance.JMeterParser' do
|
252
|
+
glob params[:result_file]
|
253
|
+
end
|
254
|
+
end
|
255
|
+
modeThroughput params[:mode_throughput] || 'false'
|
256
|
+
end
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
228
260
|
publisher do
|
229
261
|
name :email_notifications
|
230
262
|
plugin_id 'mailer'
|