# prepare tar
factory.addStep(ShellCommand(
name = "dltar",
- description = "Building GNU tar",
+ description = "Building and installing GNU tar",
command = ["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "tools/tar/compile", "V=s"],
env = MakeEnv(),
haltOnFailure = True
# build
factory.addStep(ShellCommand(
name = "tools",
- description = "Building tools",
+ description = "Building and installing tools",
command = ["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "tools/install", "V=s"],
env = MakeEnv(),
haltOnFailure = True
factory.addStep(ShellCommand(
name = "toolchain",
- description = "Building toolchain",
+ description = "Building and installing toolchain",
command=["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "toolchain/install", "V=s"],
env = MakeEnv(),
haltOnFailure = True
#factory.addStep(IfBuiltinShellCommand(
factory.addStep(ShellCommand(
name = "images",
- description = "Building images",
+ description = "Building and installing images",
command=["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "target/install", "V=s"],
env = MakeEnv(),
haltOnFailure = True