detect build.linux in jobs.queue and display notice

This commit is contained in:
Lisa Passing 2015-06-23 17:14:33 +02:00
parent c83afe458a
commit ef045bdcb8
2 changed files with 8 additions and 0 deletions

View File

@ -143,4 +143,9 @@ Job = Model.extend DurationCalculations,
"#{@get('repo.slug')} ##{@get('number')}"
).property()
isLegacyInfrastructure: (->
if @get('queue') == 'builds.linux'
true
).property('queue')
`export default Job`

View File

@ -4,6 +4,9 @@
{{#if view.job.notStarted}}
<div class="log-notice">Hang tight, the log cannot be shown until the build has started.</div>
{{/if}}
{{#if view.job.isLegacyInfrastructure}}
<p class="">This job runs on our legacy infrastructure. Read more about upgrading <a href="#" title="">in our docs</a></p>
{{/if}}
<div {{bind-attr class="view.job.notStarted:hidden"}}>
<menu class="log-header">
{{#if view.canRemoveLog}}