45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Travis CI build stats</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Travis CI build stats</h1>
|
|
<form>
|
|
<label for="repo-name">Repository:</label>
|
|
<input id="repo-name" type="text" placeholder="owner/repo" />
|
|
<input class="button" type="submit" value="Render" />
|
|
<br />
|
|
<input id="include-failed" type="checkbox" checked="checked" />
|
|
<label for="include-failed">Include failed builds</label>
|
|
<br />
|
|
<input id="only-master" type="checkbox" />
|
|
<label for="only-master">Only master branch</label>
|
|
</form>
|
|
|
|
<div class="column">
|
|
<h2>Build durations (in minutes)</h2>
|
|
<h3>duration = sum of job run times</h3>
|
|
<div id="build-times-duration"></div>
|
|
</div>
|
|
|
|
<div class="column">
|
|
<h2>Build wall times (in minutes)</h2>
|
|
<h3>wall time = finished_at - started_at</h3>
|
|
<div id="build-times"></div>
|
|
</div>
|
|
|
|
<div class="column">
|
|
<h2>Builds per day</h2>
|
|
<div id="build-counts"></div>
|
|
</div>
|
|
|
|
<script src="d3.min.js"></script>
|
|
<script src="script.js"></script>
|
|
|
|
<a href="https://github.com/scribu/travis-stats"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/a6677b08c955af8400f44c6298f40e7d19cc5b2d/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677261795f3664366436642e706e67" alt="Fork me on GitHub"><!-- data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" --></a>
|
|
</body>
|
|
</html>
|