5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-19 16:09:36 +00:00

Create builds-develop.md

This commit is contained in:
Neil Alexander 2018-06-13 18:31:14 +01:00 committed by GitHub
parent f3ca5a0ef3
commit 00beb7a7d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

34
builds-develop.md Normal file
View File

@ -0,0 +1,34 @@
---
tags: dontlink
---
# Latest Development Builds
Much like the `master` branch, developmental builds are also built from the `develop` branch by [CircleCI](https://circleci.com/gh/yggdrasil-network/yggdrasil-go) for a number of platforms.
Builds from the `develop` branch may be rougher around the edges and not be as well tested! If you value stability, stick to the [master](builds.md) builds.
For convenience, the [build artifacts](https://circleci.com/api/v1.1/project/github/yggdrasil-network/yggdrasil-go/latest/artifacts?branch=develop&filter=successful) from the latest `develop` 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=develop&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>