3

我正在尝试在 Azure DevOps Repo 中为我的代码自动生成和更新文档。我已经配置了一个管道,以便在提交到 master 分支时运行 python 脚本。此脚本从存储库中的文件中提取相关信息并创建一个降价文件并将输出存储为 README.md

但是,当我运行管道时,什么也没有发生。作业注册为已完成,但 README.md 文件未更改。我没有出现错误或任何东西,所以不太确定出了什么问题,也许是权限问题。有人知道对此有什么解决办法吗?

管道代码:

trigger:
- master

pool:
  vmImage: 'ubuntu-latest'

steps:
- task: UsePythonVersion@0
  inputs:
    versionSpec: '3.8'

- script: |
    python -m pip install --upgrade pip
    pip install -r requirements.txt
    python generate-documentation.py
  displayName: 'Generate Documentation'

Python脚本:

import yaml

file = open('single-source.yaml')

documentation = yaml.load(file, Loader=yaml.FullLoader)


productdetails = documentation["product details"]
specifications = documentation["specifications"]
prerequisites = documentation["prerequisites"]
requiredinputs = documentation["required inputs"]
selfservice = documentation["self service"]
costsandcharging = documentation["costs and charging"]

f = open("README.md","w")

for x in productdetails.values():
  f.write(x+"\n" )

f = open("README.md","a")

if "specifications" in documentation:
    for x in specifications.values():
      f.write(x+"\n")

if "prerequisites" in documentation:
    for x in prerequisites.values():
        f.write(x+"\n")

if "requiredinputs" in documentation:
    for x in requiredinputs.values():
        f.write(x+"\n")

if "selfservice" in documentation:
    for x in selfservice.values():
        f.write(x+"\n")

if "costsandcharging" in documentation:
    for x in costsandcharging.values():
        f.write(x)

f.close()
4

1 回答 1

3

完全有可能,完全遵循这个行动计划,如果有问题的话。

  1. 在文件转换之前和结帐之后,添加一个包含以下内联代码的 bash 脚本:

git checkout $(Build.SourceBranchName)

无论您在 Python 中处理后进行何种转换,并使用管道中的内联bash 脚本步骤对其进行验证,如下所示:

cat README.md

如果您README.md在管道日志中看到文件的预期状态,则只需添加第二个内联 bash 脚本,如下所示:

git add README.md
git config --global user.name "$(Build.RequestedFor)"
git config --global user.email "$(Build.RequestedForEmail)"
git commit -m "$(Build.BuildId)"
git push origin $(Build.SourceBranchName)

先决条件

  1. 您需要为您的管道启用 OAuth 令牌,这将验证推送操作返回到您的 Git 存储库。对于 YAML 管道,您需要添加一个明确的Checkout步骤作为第一步,并将选项persistCredentials设置为true,例如
- checkout: self
  persistCredentials: true
  1. 推送操作将使用Build Service 身份、项目或集合范围的权限。默认情况下,这些身份没有Contribute 通用权限,因此您需要将其授予它们。仅供参考,这些标识用于Azure DevOps 中的所有管道。您的身份命名如下:

组织范围:项目集合构建服务({OrgName}
项目范围:{项目名称}构建服务({组织名称}

从 Project Settings -> Repositories 授予他们Contribute权限

在此处输入图像描述

前 Azure DevOps 和 GitHub 支持工程师。我正在将 Python 排除在提交和推送步骤的评估之外,尽管可能它肯定比 Bash 更难排除故障。

于 2020-04-15T03:59:37.093 回答