Skip to content

Commit 83a28d9

Browse files
committed
[Build] Fix the collection of results for performance-tests
Rename the performance-tests job to have the abbreviation '-perf-' in its name because the scripts that collect its results rely on it. Follow-up on - #2697
1 parent 94816e4 commit 83a28d9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

JenkinsJobs/PerformanceTests/FOLDER.groovy

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ folder('PerformanceTests') {
99
for (STREAM in STREAMS){
1010
def MAJOR = STREAM.split('\\.')[0]
1111
def MINOR = STREAM.split('\\.')[1]
12-
pipelineJob('PerformanceTests/ep' + MAJOR + MINOR + '-performance-tests'){
13-
description('Build and publish custom Docker images')
12+
pipelineJob('PerformanceTests/ep' + MAJOR + MINOR + '-perf-tests'){ // The result collecting scripts rely on the '-perf-' part in the name
13+
displayName('ep' + MAJOR + MINOR + '-Performance-Tests')
14+
description('Run performance tests')
1415
// Define parameters in job configuration to make them already available in the very first build
1516
parameters {
1617
stringParam('buildId', null, 'Build ID to test, such as I20140821-0800 or M20140822-0800')

0 commit comments

Comments
 (0)