This topic lists tags that can be used with Bash as Pipeline steps. For more information about Bash Pipeline steps, see Bash.
name
An alphanumeric string (underscores are permitted) that identifies the step. The name should be chosen to accurately describe what the step does, e.g. prov_test_env
to represent a job that provisions a test environment. Names of steps must be unique within a pipeline.
type
Must be Bash
for this step type.
configuration
Specifies all optional configuration selections for the step's execution environment.
Tag | Description of usage | Required/Optional |
---|---|---|
| Label that controls affinity to a Node. All the steps with the same affinityGroup will be executed on the same node. This will allow sharing state between the steps. An example is having the same affinityGroup for DockerBuild and DockerPush steps in a Pipeline so that Image being built in the DockerBuild step can be used to published in the DockerPush step. | Optional |
| Controls the priority of a step when there are parallel steps in a pipeline or multiple pipelines executing. It determines which step will run first across all steps that could run if there were no constraints on the number of steps running. Steps with a lower number will run before steps with higher numbers. For example, priority 10 will run before priority 100. The default priority is 9999. Priority does not apply to steps that are still waiting for an input to complete or configured to run in a node pool with no available nodes. Also, if there are two steps ready to run and only one available node, the one with the lower priority number runs first, regardless of which pipeline each step belongs to. | Optional |
| Time limit, in the number of seconds, for the step to complete. If the step does not complete in the given time limit, the step will be forced to a completion state of failed. | Optional |
| Assigns the node pool the step executes on. If node pool isn't specified, a step will execute on the default node pool. See here to learn more about node pool | Optional |
| Specifies the step must execute in chronological order, to ensure receipt of all state updates from preceding steps. A step with | Optional |
| If you do not want a step to contribute to the final status of the run, add allowFailure: true to the configuration section of that step. When this option is used, even when a step fails or is skipped, the final status of the run is not affected. For more information, see Conditional Workflows. | Optional |
| Create a condition based on the values of add_run_variables environment variable, so that a step can be skipped based on dynamically set variables before it gets assigned to a node. For more information, see Run Variable Conditional Workflow. | Optional |
| Assigns any environment variables and their values in key:value format. All environment variables assigned within a step definition are active only for the scope of the execution of that step. If the following variables are set, they will be used:
| Optional |
| A collection of integrations that will be used by this step. Integrations can be used directly in step without a resource. | Optional |
| A collection of named steps whose completion will trigger execution of this step. In addition, you can set status conditional workflow for input steps. When configured for a step, it executes only if an input step’s status, during its current run, is satisfied. You can configure any number of statuses for an input step. NoteIt is important to note that the status of an input step in the current run only is considered for conditional workflows. If a step is not part of the current run, it is always assumed that the condition for that input step is met. For more information, see Step Status Conditional Workflow. | Optional |
| A collection of named Pipelines Resources that will be used by this step as inputs.
| Optional |
| A collection of named Pipelines Resources that will be generated or changed by this step.
| Optional |
| Specifies the runtime for the execution node. | Optional |
execution
Declare sets of shell command sequences to perform for different execution phases:
Tag | Description of usage | Required/Optional |
---|---|---|
| Commands to execute in advance of | Optional |
| Main commands to execute for the step | Optional |
| Commands to execute on successful completion of | Optional |
| Commands to execute on failed completion of | Optional |
| Commands to execute on any completion of | Optional |
Note
onExecute
, onStart
, onSuccess
, onFailure
, and onComplete
are reserved keywords. Using these keywords in any other context in your execution scripts can cause unexpected behavior.
Tip
To execute a series of commands or a block of code, follow the approach (using a pipe [- |]) as mentioned here:
execution: onExecute: - | [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($PYARMOR_LICENSE)) > C:\build\pyarmor_license.zip
execution: onStart: - | if [[ "$QUICK_MODE" == "true" ]]; then echo "sending failure update to git because this run was executed in QUICK_MODE" update_commit_status packagesGit --status failure --message "marked as failed due to quick mode" --context $step_name else update_commit_status packagesGit --status success --message "marked as success due to non quick mode" --context $step_name fi