BuildKey

Fields that uniquely reference a build.

interface BuildKey {
    buildNumber: number;
    pipelineId: string;
}

Hierarchy

  • Record<string, unknown>
    • BuildKey

Properties

buildNumber: number

Identifies a build within the sequence of builds identified by the build pipelineId.

Used to identify the 'most recent' build in that sequence of builds.

The combination of pipelineId and buildNumber must uniquely identify the build.

16
pipelineId: string

An ID that relates a sequence of builds. Depending on your system this might be a project ID, pipeline ID, plan key etc. - whatever logical unit you use to group a sequence of builds.

The combination of pipelineId and buildNumber must uniquely identify the build.

my-build-plan