错误azure-pipelines.yml中的意外值'steps'

时间:2020-08-05 19:03:05

标签: azure-pipelines azure-pipelines-yaml

在构建和部署docker映像之前,我试图将视频文件从GPM复制到app / dist / asset / images文件夹。在第27行获取意外的值“ Steps”。

如果我删除复制视频文件的步骤,则YML文件可以正常工作。

azure-pipelines.yml

    trigger:
  branches:
    include: ['*']

pool:
  name: Default

# templates repo
resources:
  repositories:
    - repository: templates
      type: git
      name: comp.app.common.devops-templates
      ref: master

# Global Variables
variables:
  # necessary variables defined in this template
  - template: azure-templates/vars/abc-vars.yml@templates
  - name: dockerRepoName
    value: 'docker-it/library/xyz'
  # needed for k8 deployment
  - name: helmReleaseName
    value: xyz

stages:
  - steps:
    - bash: 'curl -o aa.mp4 https://gpm.mmm.com/endpoints/Application/content/xyz/bb.mp4'
      workingDirectory: '$(System.DefaultWorkingDirectory)/_hh_app/drop/app/dist/assets/images'
      displayName: 'Download Assets'

  # template to build and deploy
  - template: azure-templates/stages/angular-express-docker.yml@templates
    parameters:
      dockerRepoName: $(dockerRepoName)

    # deploy to rancher
  - template: azure-templates/stages/deploy-k8-npm.yml@templates
    parameters:
      helmReleaseName: $(helmReleaseName)

1 个答案:

答案 0 :(得分:1)

steps属性应置于stage级别之下。它是:stage=>job=>steps

因此,在定义多阶段yaml管道时,不能将steps放在此处。

1. steps可以直接放置在简单的Yaml管道的第一级(无阶段):

trigger:
- master

pool:
  vmImage: 'windows-latest'

steps:
- script: echo Hello, world!
  displayName: 'Run a one-line script'

- script: |
    echo Add other tasks to build, test, and deploy your project.
  displayName: 'Run a multi-line script'

2. 应将其置于多阶段Yaml管道中的工作级别以下:

stages:
- stage: build
  displayName: Build
  jobs:
  - job: Build
    pool:
      name: xxx
    steps:
      - task: CmdLine@2
        inputs:
          script: |
            echo Hello world

- stage: deploy
  displayName: Release
  jobs:
  - job: Release
    pool:
      name: xxx
    steps:
      - task: CmdLine@2
        inputs:
          script: |
            echo Hello world

根据您的stages:元素,您的管道将被识别为可用于构建和部署的多阶段管道。因此,您不能也不应将steps直接放在stages:下。

解决方案:

要解决Unexpected value 'Steps',您应该删除steps或将其添加到一个阶段级别:

stages:
  - stage: First
    displayName: FirstStage
    jobs:
    - job: FirstJob
      pool:
        name: xxx
      steps:
      - bash: 'curl -o aa.mp4 https://gpm.mmm.com/endpoints/Application/content/xyz/bb.mp4'
        workingDirectory: '$(System.DefaultWorkingDirectory)/_hh_app/drop/app/dist/assets/images'
        displayName: 'Download Assets'

  # template to build and deploy
  - template: azure-templates/stages/angular-express-docker.yml@templates
    parameters:
      dockerRepoName: $(dockerRepoName)

    # deploy to rancher
  - template: azure-templates/stages/deploy-k8-npm.yml@templates
    parameters:
      helmReleaseName: $(helmReleaseName)