Make.B
include S.OPERATION
A short and unique name for this operation, used as a filename component and database key. e.g. "docker-build"
module Key : S.WITH_DIGEST
The id, Key.t
pair uniquely identifies the operation.
module Value : S.WITH_MARSHAL
The result of a build.
val build : t -> Current.Job.t -> Key.t -> Value.t Current.or_error Lwt.t
build t j k
builds k
. Call Job.start j
once any required resources have been acquired. Log messages can be written to j
.
val pp : Key.t Fmt.t
Describe the operation. e.g. "docker build $src"
.