Skip to content

Instantly share code, notes, and snippets.

@benmoss
Forked from mavenraven/ci.html
Last active May 23, 2016 19:53
Show Gist options
  • Save benmoss/3751e8f53556d96d6b00 to your computer and use it in GitHub Desktop.
Save benmoss/3751e8f53556d96d6b00 to your computer and use it in GitHub Desktop.
CI monitor
<html>
<head>
<style>
iframe { border:0; }
</style>
<script>
setInterval(function() {
var x = document.getElementById("appveyor");
x.src = x.src;
}, 300000);
</script>
</head>
<body style="margin:24px 35px;padding:0; position:relative;">
<iframe src="https://diego.ci.cf-app.com/pipelines/greenhouse?groups=bosh-garden-windows&groups=main" style="position:absolute;top:0;left:0;width:66%;height:50%;"></iframe>
<iframe src="https://main.bosh-ci.cf-app.com/pipelines/bosh-agent-windows" style="position:absolute;bottom:0;left:0;width:66%;height:50%;"></iframe>
<iframe id="appveyor" src="https://ci.appveyor.com/projects" style="position:absolute;top:0;right:0;width:33%;height:100%;"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment