diff --git a/app/styles/app/modules/tooltips.sass b/app/styles/app/modules/tooltips.sass index 51cd9308..db463507 100644 --- a/app/styles/app/modules/tooltips.sass +++ b/app/styles/app/modules/tooltips.sass @@ -32,7 +32,7 @@ $tooltip-grey: #6A6C6D bottom: -2.5em @media #{$medium-up} - width: 25rem + width: 18rem .tooltip-inner height: 4.1em diff --git a/app/templates/jobs.hbs b/app/templates/jobs.hbs new file mode 100644 index 00000000..d443ef2f --- /dev/null +++ b/app/templates/jobs.hbs @@ -0,0 +1,85 @@ +{{#if view.jobs.length}} +
+ + {{#if view.required}} +

Build Jobs

+ {{else}} +

Allowed Failures + +
+

These are jobs are allowed to fail, without failing your entire build.

+
+

+ {{/if}} + + {{#each job in view.jobs}} + {{#view 'jobs-item' context=job}} +
+ {{#if job.config}} + {{#link-to "job" job.repo job}} + +
+ +
+ +

+ + {{#if job.id}} + {{#if job.repo.slug}} + {{number}} + {{/if}} + {{/if}} +

+ +

+ + {{!-- {{config.os}} --}} +

+ + {{#if view.languages}} +

+ + {{view.languages}} +

+ {{else}} +

+ + no language set +

+ {{/if}} + +
+ {{#if config.env}} +

+ + {{config.env}} +

+ {{else}} +

+ + no environment variables set +

+ {{/if}} + +

+ + {{format-duration duration}} +

+ +
+ + {{!--

+ + {{format-time finishedAt}} +

--}} + + {{/link-to}} + {{else}} + + {{/if}} +
+ {{/view}} + {{!-- {{job.configKeys}} --}} + {{/each}} +
+{{/if}}