Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pantsbuild.pants / reporting / templates / run.html.mustache
Size: Mime:
{{! A report for a single pants run. }}
<div class="run">
{{#no_such_run}}
<p>
{{#is_latest}}<div class="no-runs">No runs found since last clean-all.<p>Latest run will display here automatically.</div>{{/is_latest}}
{{^is_latest}}<div class="no-such-run">No run found with id {{.}}</div>{{/is_latest}}
</p>
{{/no_such_run}}
{{^no_such_run}}
<div class="run-info">
{{#run_info}}
<div class="timestamp-text">Pants run at {{timestamp_text}}</div>
<p>
<div class="cmd-line-label">Command line:</div>
<div class="cmd-line monospace">{{cmd_line}}</div>
</p>
<div>
  {{{timings_and_stats}}}
</div>
</div>
<p>
<div id="report-{{id}}"></div>
</p>
<script>
  $(function() {
    pants.poller.startTailing('run_{{id}}_root', '{{report_path}}', '#report-{{id}}');
  });
  $(function() {
    pants.poller.startPolling('run_{{id}}_cumulative_timings', '{{cumulative_timings_path}}', '#cumulative-timings-collapsible-content', function() { pants.collapsible.hasContent('cumulative-timings-collapsible'); });
  });
  $(function() {
    pants.poller.startPolling('run_{{id}}_self_timings', '{{self_timings_path}}', '#self-timings-collapsible-content', function() { pants.collapsible.hasContent('self-timings-collapsible'); });
  });
  $(function() {
    var initFunc = function() { pants.collapsible.hasContent('artifact-cache-stats-collapsible'); };
    // Only update if the hit and miss details are both closed. Otherwise the update will lose that state and force them
    // closed, which will be annoying to the user.
    var predicate = function() { return !($('#cache-hit-details').is(':visible') || $('#cache-miss-details').is(':visible')); };
    pants.poller.startPolling('run_{{id}}_artifact_cache_stats', '{{artifact_cache_stats_path}}', '#artifact-cache-stats-collapsible-content', initFunc, predicate);
  });
</script>
{{/run_info}}
{{/no_such_run}}
{{#is_latest}}
<script>
  $(function() {
    // We want to view whatever the latest run is, so reload the page if that changes.
    window.setInterval(function() {
      $.ajax({
        url: '/latestrunid',
        success: function(data, textStatus, jqXHR) {
          if (data != '{{.}}') {
            document.location.reload();
          }
        }
      });
    }, 500);
  });
</script>
{{/is_latest}}
</div>