Bitbucket Pipeline Runner Settings

Bitbucket Pipelines support uses the local pipeline-runner CLI to run pipelines, stages, and steps locally in Docker.

Table of Contents

  1. workspaceTasks.applicationPath.bitbucketPipelineRunner
  2. workspaceTasks.bitbucketPipelineRunner.environmentFiles

workspaceTasks.applicationPath.bitbucketPipelineRunner

ย  ย 
Type: string
Default: "pipeline-runner"
Scope: resource

Path to the pipeline-runner executable. Install via:

pipx install bitbucket-pipeline-runner
{
  "workspaceTasks.applicationPath.bitbucketPipelineRunner": "pipeline-runner"
}

workspaceTasks.bitbucketPipelineRunner.environmentFiles

ย  ย 
Type: string[]
Default: []
Scope: resource

List of environment files passed to pipeline-runner via --env-file. Each entry becomes a separate --env-file argument.

{
  "workspaceTasks.bitbucketPipelineRunner.environmentFiles": [
    ".env",
    ".env.local"
  ]
}