aboutsummaryrefslogtreecommitdiff
path: root/trigger-lt-qcom-linux-build
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linaro.org>2019-03-12 13:17:30 -0600
committerAníbal Limón <anibal.limon@linaro.org>2019-03-12 13:18:32 -0600
commit3e492a349182e9884038aca866b554817aee58b3 (patch)
tree53def10b7ee331c60a00c8dd4860a358b13ff747 /trigger-lt-qcom-linux-build
parentc6aa9c15a8a2c995e27509063fcc29a729f4d09a (diff)
trigger-lt-qcom-linux-build: Improve trigger details in postbuild.groovy
- Inject build_parameters file to have configs and arch variables. - Add HTML formatting. Change-Id: Ibf6226e00d64067c68303343021e4b7e5a26c578 Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
Diffstat (limited to 'trigger-lt-qcom-linux-build')
-rw-r--r--trigger-lt-qcom-linux-build/postbuild.groovy12
1 files changed, 6 insertions, 6 deletions
diff --git a/trigger-lt-qcom-linux-build/postbuild.groovy b/trigger-lt-qcom-linux-build/postbuild.groovy
index 650d7b89..35395fad 100644
--- a/trigger-lt-qcom-linux-build/postbuild.groovy
+++ b/trigger-lt-qcom-linux-build/postbuild.groovy
@@ -5,12 +5,12 @@ if (manager.build.result == hudson.model.Result.SUCCESS) {
def configs = manager.envVars["KERNEL_CONFIGS"]
def arch = manager.envVars["ARCH"]
- def desc = "&nbsp;Trigger settings:<br />"
- desc += "&nbsp;Repository: ${repo}<br />"
- desc += "&nbsp;Branch: ${branch}<br />"
- desc += "&nbsp;Revision: ${revision}<br />"
- desc += "&nbsp;Configs: ${configs}<br />"
- desc += "&nbsp;Arch: ${arch}<br />"
+ def desc = "&nbsp;<h2>Trigger settings</h2><br />"
+ desc += "&nbsp;<b>Repository:</b> ${repo}<br />"
+ desc += "&nbsp;<b>Branch:</b> ${branch}<br />"
+ desc += "&nbsp;<b>Revision:</b> ${revision}<br />"
+ desc += "&nbsp;<b>Configs:</b> ${configs}<br />"
+ desc += "&nbsp;<b>Arch:</b> ${arch}<br />"
manager.build.setDescription(desc)
}