CommandResponse

data class CommandResponse(val args: List<String>, val dir: String, val env: List<String>, val name: String, val waitFor: List<String>)

Command describes a step performed as part of the build pipeline.

Constructors

Link copied to clipboard
fun CommandResponse(args: List<String>, dir: String, env: List<String>, name: String, waitFor: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Command-line arguments used when executing this Command.

Link copied to clipboard
val dir: String

Working directory (relative to project source root) used when running this Command.

Link copied to clipboard

Environment variables set before running this Command.

Link copied to clipboard

Name of the command, as presented on the command line, or if the command is packaged as a Docker container, as presented to docker pull.

Link copied to clipboard

The ID(s) of the Command(s) that this Command depends on.