steps.template definition

在一个文件中定义一组步骤,并在另一个文件中多次使用它。

steps:
- template: string # Required as first property. Reference to a template for this step.
  parameters: # Parameters used in a step template.

引用此定义的定义: 步骤

属性

template 字符串。 作为第一个属性是必需的。
对此步骤的模板的引用。

parameters 模板参数。
步骤模板中使用的参数。

示例

在主管道中:

steps:
- template: string  # reference to template
  parameters: { string: any } # provided parameters

在包含的模板中:

parameters: { string: any } # expected parameters
steps: [ script | bash | pwsh | powershell | checkout | task | templateReference ]
# File: steps/build.yml

steps:
- script: npm install
- script: npm test
# File: azure-pipelines.yml

jobs:
- job: macOS
  pool:
    vmImage: macOS-latest
  steps:
  - template: steps/build.yml # Template reference

- job: Linux
  pool:
    vmImage: ubuntu-latest
  steps:
  - template: steps/build.yml # Template reference

- job: Windows
  pool:
    vmImage: windows-latest
  steps:
  - template: steps/build.yml # Template reference
  - script: sign              # Extra step on Windows only

请参阅

有关使用模板的详细信息,请参阅模板