From 5ec9199677bd2accfed1e8beb01e44b916169470 Mon Sep 17 00:00:00 2001 From: Henrik Hodne Date: Thu, 11 Jul 2013 11:19:06 -0700 Subject: [PATCH] Show annotations in build view --- assets/scripts/app/templates/builds/show.hbs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/scripts/app/templates/builds/show.hbs b/assets/scripts/app/templates/builds/show.hbs index 29458ed3..71d35158 100644 --- a/assets/scripts/app/templates/builds/show.hbs +++ b/assets/scripts/app/templates/builds/show.hbs @@ -53,6 +53,14 @@ {{/unless}} + {{#unless build.isMatrix}} +
+ {{#each annotation in build.jobs.firstObject.annotations}} +
{{annotation.providerName}}: {{annotation.description}}
+ {{/each}} +
+ {{/unless}} + {{#if build.isMatrix}} {{view Travis.JobsView jobsBinding="build.requiredJobs" required="true"}} {{view Travis.JobsView jobsBinding="build.allowedFailureJobs"}}