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

48 lines
2.1 KiB
Markdown
Raw Normal View History

2018-06-13 17:31:14 +00:00
---
tags: dontlink
2018-07-23 16:39:34 +00:00
sitemap: true
2018-06-13 17:31:14 +00:00
---
# 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.
2018-06-29 22:13:41 +00:00
2018-11-08 22:33:23 +00:00
**Warning:** The `develop` branch is used for pre-release changes and features. It's not guaranteed to be 100% compatible with the `master` branch and anything in the `develop` branch is subject to change at any point before release - features merged into the `develop` branch may not be completely finished. Builds from this branch will likely be rougher around the edges and not as well tested. We welcome all testing and feedback of the `develop` branch, but if you value stability, you may prefer to stick to the [master](builds.md) builds instead.
2018-06-29 22:13:41 +00:00
2018-06-13 17:31:14 +00:00
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:
2018-10-17 16:03:15 +00:00
<h3>yggdrasil</h3>
2018-06-13 17:31:14 +00:00
<p id="buildArtifactLinks"></p>
2018-10-17 16:03:15 +00:00
<h3>yggdrasilctl (admin utility)</h3>
<p id="buildArtifactLinksCtl"></p>
2018-06-13 17:31:14 +00:00
<!-- 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';
2018-10-17 16:03:15 +00:00
fetch(url).then(function(res) {
2018-06-13 17:31:14 +00:00
return res.json();
}).then(function (bins) {
var links = document.createElement('p')
2018-10-17 16:03:15 +00:00
var ctllinks = document.createElement('p')
2018-06-13 17:31:14 +00:00
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;
2018-10-17 16:03:15 +00:00
if (bin.path.includes("yggdrasilctl")) {
ctllinks.appendChild(link);
ctllinks.appendChild(document.createElement('br'));
} else {
links.appendChild(link);
links.appendChild(document.createElement('br'));
}
2018-06-13 17:31:14 +00:00
}
2018-10-17 16:03:15 +00:00
document.getElementById("buildArtifactLinks").appendChild(links);
document.getElementById("buildArtifactLinksCtl").appendChild(ctllinks);
2018-06-13 17:31:14 +00:00
})
.catch(err => { throw err });
</script>