Runs nix-build
with a quiet flag, outputting to _rixpress/result
.
Usage
rxp_make(verbose = FALSE, max_jobs = 1, cores = 1)
Arguments
- verbose
Logical, defaults to FALSE. Set to TRUE to see nix's
standard output, can be useful to check what is happening if the
build process takes long.
- max_jobs
Integer, number of derivations to be built in parallel.
- cores
Integer, number of cores a derivation can use during build.
Value
A character vector of paths to the built outputs.
Examples
if (FALSE) { # \dontrun{
# Build the pipeline with default settings
rxp_make()
# Build with verbose output and parallel execution
rxp_make(verbose = TRUE, max_jobs = 4, cores = 2)
} # }