We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cdf262 commit 5e40150Copy full SHA for 5e40150
1 file changed
Jenkinsfile
@@ -197,8 +197,7 @@ VERSION=${env.VERSION}-SNAPSHOT""")
197
archiveArtifacts(artifacts: 'rerun.json')
198
script {
199
log(level: 'INFO', text: 'Set description with the number of stage retries to help with the ES queries.')
200
- def numberOfRepeats = rerunStages?.collect { k, v -> return k }?.size
201
- currentBuild.description = "Stage retries: ${numberOfRepeats}"
+ currentBuild.description = "Stage retries: ${rerunStages?.size()}"
202
}
203
// Required to enable the flaky test reporting with GitHub. Workspace exists since the post/always runs earlier
204
dir("${BASE_DIR}"){
0 commit comments