mirror of
https://github.com/cwinfo/yggdrasil-network.github.io.git
synced 2024-11-09 16:50:31 +00:00
34 lines
1.2 KiB
Markdown
34 lines
1.2 KiB
Markdown
---
|
|
tags: dontlink
|
|
---
|
|
|
|
# Latest Builds
|
|
|
|
After every push to the `master` branch of the [GitHub repository](https://github.com/yggdrasil-network/yggdrasil-go), the code is automatically built by [CircleCI](https://circleci.com/gh/yggdrasil-network/yggdrasil-go) for a number of platforms.
|
|
For convenience, the [build artifacts](https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts?branch=master&filter=successful) from the latest build are linked below:
|
|
|
|
<p id="buildArtifactLinks"></p>
|
|
|
|
<!-- TODO sort these to a useful order of some kind -->
|
|
<script type="text/javascript">
|
|
let url = 'https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts?branch=master&filter=successful';
|
|
|
|
fetch(url)
|
|
.then(function(res) {
|
|
return res.json();
|
|
}).then(function (bins) {
|
|
var links = document.createElement('p')
|
|
for (var idx in bins) {
|
|
var bin = bins[idx]
|
|
var link = document.createElement('a');
|
|
link.appendChild(document.createTextNode(bin.path));
|
|
link.title = bin.path;
|
|
link.href = bin.url;
|
|
links.appendChild(link);
|
|
links.appendChild(document.createElement('br'));
|
|
}
|
|
document.getElementById("buildArtifactLinks").appendChild(links)
|
|
})
|
|
.catch(err => { throw err });
|
|
</script>
|