
This is a simple set of scripts that can listen to gerrit, track 3rd party ci systems reviews, and display a web dashboard showing their results. A demo system can be found here: http://ec2-54-67-102-119.us-west-1.compute.amazonaws.com:5000/?project =openstack%2Fcinder&user=&timeframe=24 It is not intended to do much more than just show success/fail, and can work nicely as a quick way to compare your systems results with others to catch any issues you might be having. Change-Id: I682c5426fe834a63d3e4f27ebde7d40ee7f9749b
19 lines
667 B
HTML
19 lines
667 B
HTML
<html>
|
|
<head>
|
|
<script type='text/javascript' src='/static/jquery-2.1.3.min.js'></script>
|
|
<script type='text/javascript' src='/static/scoreboard.js'></script>
|
|
<script type='text/javascript' src='http://fgnass.github.io/spin.js/spin.js'></script>
|
|
<link rel='stylesheet' type='text/css' href='/static/scoreboard.css'>
|
|
</head>
|
|
<body>
|
|
<div id='query-box'></div>
|
|
<div id='scoreboard'></div>
|
|
<script type='text/javascript'>
|
|
var HOST = '{{host}}';
|
|
|
|
Scoreboard.show_query_box(HOST, 'query-box');
|
|
Scoreboard.build(HOST, 'scoreboard');
|
|
</script>
|
|
</body>
|
|
</html>
|