Module Values.BuildGroupSource

Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.

Sourcetype nonrec t = {
  1. identifier : String_.t option;
    (*

    Contains the identifier of the build group.

    *)
  2. dependsOn : Identifiers.t option;
    (*

    An array of strings that contain the identifiers of the build groups that this build group depends on.

    *)
  3. ignoreFailure : Boolean.t option;
    (*

    Specifies if failures in this build group can be ignored.

    *)
  4. currentBuildSummary : BuildSummary.t option;
    (*

    A BuildSummary object that contains a summary of the current build group.

    *)
  5. priorBuildSummaryList : BuildSummaries.t option;
    (*

    An array of BuildSummary objects that contain summaries of previous build groups.

    *)
}
Sourceval make : ?identifier:??? -> ?dependsOn:??? -> ?ignoreFailure:??? -> ?currentBuildSummary:??? -> ?priorBuildSummaryList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t