Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

Wait for Deployments

Waits for deployments to a pipeline stage to complete.

Script usage:

WaitFor-Deployments(
	Application: <text>,
	PipelineStage: <text>,
	[ReleaseNumber: <text>],
	[BuildNumber: <text>]
);

This operation may be prefixed with BuildMaster::, although this is a built-in namespace and isn't really necessary.

Arguments:

NameFormatScript UsageUsage Notes
In application
text
Application
This argument is required.
Pipeline stage
text
PipelineStage
This argument is required.
Release number
text
ReleaseNumber
This may be a specific release number, "latest" or "any". Default value is "any".
Build number
text
BuildNumber
This may be a specific release number, "latest" or "any". Default value is "any".

Example:

WaitFor-Deployments
(
    Application: Hdars.Packager,
    ReleaseNumber: 1.0.0,
    BuildNumber: 10,
    PipelineStage: Integration
);