2018-03-12 22:31:52 +00:00
|
|
|
---
|
|
|
|
tags: dontlink
|
|
|
|
---
|
|
|
|
|
|
|
|
# Builds
|
|
|
|
|
|
|
|
Build [artifacts](https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts):
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
let url = 'https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts';
|
|
|
|
|
|
|
|
fetch(url)
|
|
|
|
.then(res => res.json())
|
2018-03-12 23:44:17 +00:00
|
|
|
.then(function (bins) {
|
|
|
|
for (var idx in bins) {
|
|
|
|
var bin = bins[idx]
|
2018-03-12 23:49:32 +00:00
|
|
|
var link = document.createElement('a');
|
|
|
|
link.appendChild(document.createTextNode(bin.path));
|
|
|
|
link.title = bin.path;
|
|
|
|
link.href = bin.url;
|
|
|
|
document.body.appendChild(link);
|
|
|
|
document.body.appendChild(document.createElement('br'));
|
2018-03-12 22:31:52 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => { throw err });
|
|
|
|
</script>
|