0

在我的图形版本中,我连接到“Azure Repo”以从中提取脚本,而不是 BUILD 工件

这可以在 YAML 管道中执行吗?到目前为止还不清楚,提前谢谢

repo 中有很多脚本,所以它不需要构建或打包为 zip/drop 包。

在此处输入图像描述

4

3 回答 3

2

资源是作为管道的一部分使用的任何外部服务。资源的一个示例是另一个 CI/CD 管道,它产生:

resources:
  pipelines: [ pipeline ]
  repositories: [ repository ]
  containers: [ container ]
  • Azure Pipelines 或 Jenkins 等工件。
  • GitHub、Azure Repos或 Git 等代码存储库。
  • 容器映像注册表,例如 Azure 容器注册表或 Docker 中心。

YAML 中的资源表示管道、容器、存储库和类型的来源。有关资源的更多信息,请参见此处

于 2020-05-07T03:27:45.090 回答
2

是的,对不起,我的错。对的,这是可能的。关注文档

如果您的管道在另一个存储库中有模板,或者如果您想对需要服务连接的存储库使用多存储库签出,则必须让系统知道该存储库。repository 关键字允许您指定外部存储库。

resources:
  repositories:
  - repository: string  # identifier (A-Z, a-z, 0-9, and underscore)
    type: enum  # see the following "Type" topic
    name: string  # repository name (format depends on `type`)
    ref: string  # ref name to use; defaults to 'refs/heads/master'
    endpoint: string  # name of the service connection to use (for types that aren't Azure Repos)
于 2020-05-06T15:09:06.593 回答
0

@Hugh Lin - MSFT @Krzysztof Madej

我的 Azure DevOps GIT 存储库名为“AZDO_Scripts”(同一个项目的所有部分),并且具有这样的结构......

/Scripts/AzureCLI/ResourceGroup/Provision_ResourceGroup_withTags.ps1

我的 YAML 现在是这样的...

name: $(date:yyyyMMdd)$(rev:.r)-$(SourceBranchName)

trigger:
- master

variables:
  solution: '**/*.sln'
  buildPlatform: 'Any CPU'
  buildConfiguration: 'Release'

resources:
  repositories:
  - repository: commonscripts
    type: git
    name: AZDO_Scripts

stages:
- stage: Test
  variables:
    - name: resourcegroup
      value: 'rg-testthescript'
    - name: location
      value: 'WestEurope'
    - name: environmenttag
      value: 'Test'
  jobs:
    - job : TestJob
      pool:
        vmImage: 'windows-latest'
      steps:
      - task: AzureCLI@2
        inputs:
          azureSubscription: 'My-Azure-Sub-ServiceConnection'
          scriptType: 'ps'
          scriptLocation: 'scriptPath'
          scriptPath: 'Scripts/AzureCLI/ResourceGroup/Provision_ResourceGroup_withTags.ps1@commonscripts'
          arguments: '-resourcegroup $(resourcegroup) -location $(location) -environmenttag $(environmenttag)'

我需要在 scriptPath: 语句中做什么来引用该脚本?(倒数第二行)

scriptPath: 'Scripts/AzureCLI/ResourceGroup/Provision_ResourceGroup_withTags.ps1@commonscripts'
于 2020-05-07T08:04:45.470 回答