external help file | Module Name | online version | schema |
---|---|---|---|
Pipelines.dll-Help.xml |
Pipelines |
2.0.0 |
This Cmdlet creates an Ado Pipeline object
New-AdoAdoPipeline [-Name] <String> [[-Stages] <Stage[]>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
A pipeline defines the continuous integration and deployment process for your app. It's made up of one or more stages. It can be thought of as a workflow that defines how your test, build, and deployment steps are run.
PS C:\> New-AdoAdoPipeline -Name 'Sample'
Name Stages
---- ------
Sample {}
This creates a Pipeline object on the Command line.
Pipeline run number.
Type: System.String
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Stages are groups of jobs that can run without human intervention.
Type: ModPosh.Pipelines.Ado.Stage[]
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.