FsMake


ParallelMaybe Type

Represents the conditions of a parallel maybe pipeline stage.

Union cases

Union case Description

PMaybe(step, condition)

Full Usage: PMaybe(step, condition)

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

A parallel Step with a condition that will only run when condition is true.

step : Step

The Step to run.

condition : bool

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

PStep step

Full Usage: PStep step

Parameters:

A parallel Step with no condition that will always run.

step : Step

The Step to run.