buildchain 0.3.4

Software for creating and managing a distributed and reproducible chain of builds
Documentation
{
    "name": "buildchain",
    "base": "ubuntu:16.04",
    "prepare": [
        ["apt-get", "install", "-y", "cmake", "gcc", "libssl-dev", "pkg-config"],
        ["wget", "https://sh.rustup.rs", "-O", "rustup.sh"],
        ["chmod", "+x", "rustup.sh"],
        ["./rustup.sh", "-y", "--default-toolchain", "nightly"]
    ],
    "build": [
        ["bash", "-c", "source ~/.cargo/env && cd source && ./buildchain.sh"]
    ],
    "publish": [
        ["mv", "source/target/sysroot.tar.xz", "artifacts/buildchain.tar.xz"]
    ]
}