4
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2025-06-26 14:09:25 +00:00
Files
yggdrasil-network.github.io/builds-develop.md
2018-07-23 17:39:34 +01:00

1.4 KiB

tags, sitemap
tags sitemap
dontlink true

Latest Development Builds

Much like the master branch, developmental builds are also built from the develop branch by CircleCI for a number of platforms.

Builds from the develop branch will contain prerelease features and changes, although they may be rougher around the edges and not be as well tested! If you value stability, stick to the master builds.

For convenience, the build artifacts from the latest develop build are linked below:

<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>