Package 'buildr'

Title: buildr
Description: Simple package build server.
Authors: Rich FitzJohn
Maintainer: Rich FitzJohn <[email protected]>
License: MIT + file LICENSE
Version: 0.0.3
Built: 2024-09-12 19:14:13 UTC
Source: https://github.com/mrc-ide/buildr

Help Index


Build a set of binaries, waiting until complete

Description

Build a set of binaries, waiting until complete

Usage

build_binaries(filenames, host, port = 8765, ..., dest = tempfile())

Arguments

filenames

Vector of filenames of the source packages

host

A hostname for the build server, or FALSE to build locally.

port

Port number for the build server

...

Arguments passed through to the build method of buildr_client; includes dest (place to put binaries), poll (frequency to poll for job completion), timeout (time until giving up), verbose (controls printed output) and log_on_failure (print logs if a build fails).

Value

A character vector of filenames


buildr Client

Description

Client for submitting and retrieving packages from a buildr server.

Usage

buildr_client(host, port = 8765)

buildr_available(host, port = 8765)

Arguments

host

Hostname that the buildr server is running on

port

Port that the buildr server is running on (the default here matches the buildr server default)