23 lines
561 B
Handlebars
23 lines
561 B
Handlebars
{{#if loading}}
|
|
{{loading-indicator}}
|
|
{{else}}
|
|
|
|
{{build-header item=build user=auth.currentUser commit=commit repo=repo}}
|
|
|
|
{{#unless build.isMatrix}}
|
|
{{view 'annotations' annotations=build.jobs.firstObject.annotations}}
|
|
{{/unless}}
|
|
|
|
{{#if build.isMatrix}}
|
|
{{#if jobsLoaded}}
|
|
{{jobs-list jobs=build.requiredJobs repo=repo required="true"}}
|
|
{{jobs-list jobs=build.allowedFailureJobs repo=repo}}
|
|
{{else}}
|
|
{{loading-indicator center=true}}
|
|
{{/if}}
|
|
{{else}}
|
|
{{job-log job=build.jobs.firstObject}}
|
|
{{/if}}
|
|
|
|
{{/if}}
|