Show node name and devops env name in job descriptions

Change-Id: I2f4f54f438f023e0052dc30e8140adacdea9080c
diff --git a/jobs/pipelines/swarm-deploy-platform.groovy b/jobs/pipelines/swarm-deploy-platform.groovy
index e144372..2396656 100644
--- a/jobs/pipelines/swarm-deploy-platform.groovy
+++ b/jobs/pipelines/swarm-deploy-platform.groovy
@@ -22,6 +22,8 @@
     error "'PARENT_NODE_NAME' must be set from the parent deployment job!"
 }
 
+currentBuild.description = "${PARENT_NODE_NAME}:${ENV_NAME}"
+
 node ("${PARENT_NODE_NAME}") {
     if (! fileExists("${PARENT_WORKSPACE}")) {
         error "'PARENT_WORKSPACE' contains path to non-existing directory ${PARENT_WORKSPACE} on the node '${PARENT_NODE_NAME}'."