I am interested to publish jmeter report in Jenkins and set the pipeline as "failed" if there are degradation in terms of performances between the previous executions.
Below the configuration set in my Jenkinsfile for my jmeter results:
perfReport filterRegex: '',
relativeFailedThresholdNegative: 0,
relativeFailedThresholdPositive: 0,
relativeUnstableThresholdNegative: 0,
relativeUnstableThresholdPositive: 0,
sourceDataFiles: 'resultsJmeter/output/*.xml'
}
Is there any way to evaluate automatically the previous executions (if any) ?