also check for dist in GCE notice

This commit is contained in:
Lisa P 2015-12-01 11:38:50 +01:00
parent d40e2eddb3
commit b482922dd7
2 changed files with 7 additions and 4 deletions

View File

@ -148,8 +148,11 @@ Job = Model.extend DurationCalculations,
true
).property('queue')
isGce: (->
if @get('queue') == 'builds.gce' then true else false
).property('queue')
displayGceNotice: (->
if @get('queue') == 'builds.gce' && @get('_config.dist') == 'precise'
true
else
false
).property('queue', '_config.dist')
`export default Job`

View File

@ -13,7 +13,7 @@
{{/if}}
{{/if}}
{{#if job.isGce}}
{{#if job.displayGceNotice}}
{{#if job.isFinished}}
<p class="notice--blue"><span class="icon-flag"></span>
<span class="label-align">This job ran on our new platform for Legacy Precise builds. Please read <a href="https://blog.travis-ci.com/2015-11-27-moving-to-a-more-elastic-future" title="Blog post on infrastructure migration">our blog post for more information</a>.</span></p>