summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Draebing <thomas.draebing@sap.com>2019-10-17 15:30:51 +0200
committerThomas Draebing <thomas.draebing@sap.com>2019-10-17 18:38:08 +0200
commit92ef8948fa8bea9b82e901bfbe36578ffc6d5601 (patch)
tree61162c2fc8835c8cff9e026f1ae929f0098cca0e
parent5af8dad0efa945ebe746e59dc90004506de5c5d9 (diff)
Don't sort messages returned by Jenkins
The sorting of messages Jenkins would send back after verifying a change did not work anymore as it was implemented in the workflow script. This change removes the sorting of the messages. Change-Id: I9cb14308ed354c31fae08e3c7190a7f886f242bf
-rw-r--r--Jenkinsfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 260a61c402..7495540247 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -258,7 +258,7 @@ def createCodeStyleMsgBody(build, label) {
def createVerifyMsgBody(builds) {
def msgList = builds.collect { type, build -> [
'type': type, 'res': build.result, 'url': build.url + "consoleText" ]
- } sort { a,b -> a['res'].compareTo(b['res']) }
+ }
return msgList.collect {
"${Globals.resTicks[it.res]} ${it.type} : ${it.res}\n (${it.url})"