Struct buildchain::Config [] [src]

pub struct Config {
    pub name: String,
    pub base: String,
    pub privileged: bool,
    pub prepare: Vec<Vec<String>>,
    pub build: Vec<Vec<String>>,
    pub publish: Vec<Vec<String>>,
}

A build configuration

Fields

The name of this build project

The LXC base to use

True if the LXC container for builds should be privileged

The commands to run to generate a build environment

The commands to run that build the artifacts in /root/source

The commands to run that publish the artifacts to /root/artifacts

Trait Implementations

impl Clone for Config
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Config
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Config
[src]

impl PartialEq for Config
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Config

impl Sync for Config