-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Major
-
Component/s: rich-text-publisher-plugin
-
None
Recent backward incompatible change, causes RTP command to overwrite previously collected report, leading to data loss from previous invocations.
Test steps
Execute a pipeline
pipeline {
agent any
stages {
stage('Publish') {
steps {
script {
rtp nullAction: '1', parserName: 'HTML', stableText: '<b>Artifact 1: </b><a href=http://artifactory/rtp-test1><b>http://artifactory/rtp-test1</b></a>'
rtp nullAction: '1', parserName: 'HTML', stableText: '<b>Artifact 2: </b><a href=http://artifactory/rtp-test2><b>http://artifactory/rtp-test2</b></a> '
}
}
}
}
}
Expected result
Artifact 1: http://artifactory/rtp-test1 Artifact 2: http://artifactory/rtp-test2
Actual result
Artifact 2: http://artifactory/rtp-test2
Â