FsMake


Stage Type

Stages used in a pipeline.

Union cases

Union case Description

ParallelMaybeStage(steps, condition)

Full Usage: ParallelMaybeStage(steps, condition)

Parameters:
    steps : Step list - The steps to run.
    condition : bool - The condition that must be true for the step to run.

A parallel stage that runs all steps if the condition is true.

steps : Step list

The steps to run.

condition : bool

The condition that must be true for the step to run.

ParallelMaybesStage steps

Full Usage: ParallelMaybesStage steps

Parameters:

A parallel stage that runs steps in parallel if their individual conditions are true.

steps : ParallelMaybe list

The steps to run.

ParallelStage steps

Full Usage: ParallelStage steps

Parameters:
    steps : Step list - The steps to run.

A stage that runs all steps in parallel.

steps : Step list

The steps to run.

SequentialMaybeStage(step, condition)

Full Usage: SequentialMaybeStage(step, condition)

Parameters:
    step : Step - The steps to run.
    condition : bool - The condition that must be true for the step to run.

A sequential stage that runs a single step if the condition is true.

step : Step

The steps to run.

condition : bool

The condition that must be true for the step to run.

SequentialStage step

Full Usage: SequentialStage step

Parameters:
    step : Step - The step to run.

A sequential stage that runs a single step.

step : Step

The step to run.