gpt4 book ai didi

azure - 有没有办法为 yaml 模板中的对象数组设置默认值(Azure Pipelines)

转载 作者:行者123 更新时间:2023-12-03 05:31:20 27 4
gpt4 key购买 nike

我有一个 yaml 模板,其中包含如下参数。在数组/列表中,我希望能够为其中一个属性设置默认值(该对象有 3 个)。原因是我有一些 if 语句来检查这些属性,并且我希望它们运行,无论该属性是否在使用模板的 yaml 中设置(第三个属性是稍后添加的,我不想让更新使用此模板的每个存储库)。

这可以在参数设置中完成吗?

注释:如果未使用 WebProject 属性,则使用下面的示例,我希望所有内容都通过模板,就好像它设置为 false 一样。我知道在检查属性和复制文件/发布工件时存在一些重复,但目前我想让它正常工作并随后提高效率。

yaml 模板

parameters:
- name: ArtifactPublish
type: boolean
default: false
- name: Solution
type: string
default: '**/*.sln'
- name: Artifacts
type: object
default: []
jobs:
- job: Build
displayName: 'Build, Pack, and Publish'
pool:
vmImage: 'windows-latest'
variables:
solution: ${{ parameters.Solution }}
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'

- task: VSBuild@1
displayName: 'Build Solution'
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(Build.ArtifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'

- ${{ if eq(parameters.ArtifactPublish, true) }}:
- ${{ each artifact in parameters.Artifacts }}:
- ${{ if eq(artifact.WebProject, false) }}:
- task: CopyFiles@2
displayName: 'Copy .artifactignore: ${{ artifact.ArtifactPath }}'
inputs:
SourceFolder: '$(Build.SourcesDirectory)'
Contents: '.artifactignore'
TargetFolder: '$(Build.SourcesDirectory)/${{ artifact.ArtifactPath }}'

- task: PublishPipelineArtifact@1
displayName: 'Publish Artifact: ${{ artifact.ArtifactName }}'
inputs:
targetPath: '$(Build.SourcesDirectory)/${{ artifact.ArtifactPath }}'
artifactName: '${{ artifact.ArtifactName }}'

- ${{ if eq(artifact.WebProject, true) }}:
- task: CopyFiles@2
displayName: '${{ artifact.ArtifactPath }}*'
inputs:
SourceFolder: $(Build.ArtifactStagingDirectory)
Contents: '${{ artifact.ArtifactPath }}*'
TargetFolder: '$(Build.ArtifactStagingDirectory)/${{ artifact.ArtifactPath }}'

- task: PublishPipelineArtifact@1
displayName: 'Publish Artifact: ${{ artifact.ArtifactName }} (WEB)'
inputs:
targetPath: $(Build.ArtifactStagingDirectory)/${{ artifact.ArtifactPath }}
artifactName: '${{ artifact.ArtifactName }}'

使用模板的示例 yaml:

trigger:
- release
- development
- master
- feature/*
- task/*

resources:
repositories:
- repository: templates
name: Project/RepoName
type: git
ref: refs/heads/release

jobs:
- template: Templates/example.yml@templates
parameters:
ArtifactPublish: true
Artifacts:
- ArtifactPath: 'example/path'
ArtifactName: 'exampleName'
- ArtifactPath: 'example/path'
ArtifactName: 'exampleName'
WebProject: true

最佳答案

恐怕无法在参数设置中为其中一个属性设置默认值。

但是您可以使用 coalesce expression检查 WebProject 参数是否设置:

  • Evaluates the parameters in order, and returns the value that does not equal null or empty-string.Min parameters:
  • Max parameters: N
  • Example: coalesce(variables.couldBeNull, variables.couldAlsoBeNull, 'literal so it always works')

因此,您可以在模板 yaml 中使用表达式 coalesce(artifact.WebProject, false) ,如下所示:

- ${{ if eq(parameters.ArtifactPublish, true) }}:
- ${{ each artifact in parameters.Artifacts }}:
- ${{ if eq(coalesce(artifact.WebProject, false),false) }}:

使用这个表达式- ${​​{ if eq(coalesce(artifact.WebProject, false),false) }},无论参数WebProject是否设置为false或不使用,该表达式将始终为真。

关于azure - 有没有办法为 yaml 模板中的对象数组设置默认值(Azure Pipelines),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65128085/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com