Azure DevOps 管道 - YAML 格式错误?
Azure DevOps Pipeline - YAML formatting error?
请问有谁知道如何解决下面的错误吗?
# Starter pipeline
- task: CloudFormationCreateOrUpdateStack@1
inputs:
awsCredentials: 'aws_test'
regionName: 'us-east-1'
stackName: 'test'
templateSource: 'url'
templateUrl: 'https://gist.githubusercontent.com/lizrice/5889f33511aab739d873cb622688317e/raw/c2ba38eb72b350fec28b50df0d8f74b51e1a68e8/vpc-fargate.yaml'
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
我在 azure devops 和 yaml lint 上遇到的错误
Other Errors
2 error(s), 0 warning(s)
/azure-pipelines-1.yml (Line: 2, Col: 1): A sequence was not expected
/azure-pipelines-1.yml: (Line: 13, Col: 1, Idx: 461) - (Line: 13, Col: 1, Idx: 461): While parsing a block collection, did not find expected '-' indicator.
当我在第 2 行前面添加 3 个空格时,YAML Lint 上显示错误已“修复”,但 azure devops 仍会针对同一行但其他列抛出相关错误。
想知道以前是否有人遇到过这个错误,因为我自己并没有真正输入任何 YAML 代码,而是使用编辑器 + azure devops 中的其他 GUI 助手来创建这个
请参阅 YAML 文档。你有一个task
(即文件中的第一件事)在之外的有效范围,它将在steps
.[=12=下]
YAML 编辑器不保证 YAML 在语法上有效。您最好使用更强大的编辑器,例如 Visual Studio Code with the Azure Pipelines extension。
请问有谁知道如何解决下面的错误吗?
# Starter pipeline
- task: CloudFormationCreateOrUpdateStack@1
inputs:
awsCredentials: 'aws_test'
regionName: 'us-east-1'
stackName: 'test'
templateSource: 'url'
templateUrl: 'https://gist.githubusercontent.com/lizrice/5889f33511aab739d873cb622688317e/raw/c2ba38eb72b350fec28b50df0d8f74b51e1a68e8/vpc-fargate.yaml'
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
我在 azure devops 和 yaml lint 上遇到的错误
Other Errors
2 error(s), 0 warning(s)
/azure-pipelines-1.yml (Line: 2, Col: 1): A sequence was not expected
/azure-pipelines-1.yml: (Line: 13, Col: 1, Idx: 461) - (Line: 13, Col: 1, Idx: 461): While parsing a block collection, did not find expected '-' indicator.
当我在第 2 行前面添加 3 个空格时,YAML Lint 上显示错误已“修复”,但 azure devops 仍会针对同一行但其他列抛出相关错误。
想知道以前是否有人遇到过这个错误,因为我自己并没有真正输入任何 YAML 代码,而是使用编辑器 + azure devops 中的其他 GUI 助手来创建这个
请参阅 YAML 文档。你有一个task
(即文件中的第一件事)在之外的有效范围,它将在steps
.[=12=下]
YAML 编辑器不保证 YAML 在语法上有效。您最好使用更强大的编辑器,例如 Visual Studio Code with the Azure Pipelines extension。