- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 devops yaml 管道中为我们的角度应用程序构建多个发布管道。我们正在使用 Nx 工作区,因此能够在工作区构建结束时触发这些管道非常重要。
这是微软提供的示例文档代码(https://learn.microsoft.com/en-us/azure/devops/pipelines/process/pipeline-triggers?view=azure-devops&tabs=yaml)
# this is being defined in app-ci pipeline
resources:
pipelines:
- pipeline: securitylib # Name of the pipeline resource
source: security-lib-ci # Name of the triggering pipeline
trigger:
branches:
- releases/*
- master
这是我此时的完整管道:
# Starter pipeline
# 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: none
resources:
pipelines:
- pipeline: WorkspaceBuild
source: OtherPipeline
project: CommonProject
trigger:
branches:
- master
pool:
vmImage: 'ubuntu-latest'
steps:
- task: DownloadBuildArtifacts@0
inputs:
buildType: 'current'
downloadType: 'single'
artifactName: 'web-framework'
downloadPath: '$(System.ArtifactsDirectory)'
- script: |
cd $(System.ArtifactsDirectory)
dir .
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'
好的,修复命名允许每个管道运行。但是,构建管道仍然不会触发部署管道。
Respective Pipelines (UPS1_Workspace build, wf-stg deploys)
Deployment pipeline resources tag
Deployment pipeline triggers settings
嘿,这还是不行。我从触发器 ui 面板中删除了所有 CI 设置,并确保未勾选覆盖框。这里有一些更多的图像来帮助诊断
最佳答案
刚刚解决了这个错误Pipeline resource pipelinename must be valid - 它实际上意味着给定的source:
pipeline name is invalid .
2021 年 AzureDevOps 上似乎没有 UI - 全是 YAML,这让事情变得更简单。
假设两个存储库在同一个高级项目分组中:
上游存储库有一个具有任意名称的管道(源管道)- 假设它被命名为 My Upstream Pipeline (release)
。此存储库或其管道中不需要特殊配置。
下游存储库有一个管道,您希望在上游在任何“release/”分支上成功构建后触发该管道。您将以下咒语添加到它的 yaml 中:
resources:
pipelines:
- pipeline: alias_name
source: 'My Upstream Pipeline (release)'
trigger:
branches:
- release/*
如果你打错“我的上游管道(发布)”那么你会得到错误管道资源 alias_name 必须有效。
将构建的下游存储库的分支是默认分支 - 我认为除了更改默认分支之外没有任何方法可以改变它。
如果您需要根据触发管道的身份在下游管道中进行任何额外处理(例如,将已发布的工件向下传递),我建议选择 alias_name 来匹配上游存储库的名称,也使用在环境变量中合法的字符。这是因为 ADO 通过许多环境变量将有关上游触发项目的信息提供给下游管道,其中 alias_name 作为这些变量名称的一部分:
然后将以下变量的 alias_name 大写为 ALIAS_NAME:
然后您可以构造上游(触发)管道的 URL:PIPELINEURL="${SYSTEM_TEAMFOUNDATIONSERVERURI}${RESOURCES_PIPELINE_ALIAS_NAME_PROJECTID}/_build?buildId=${RESOURCES_PIPELINE_ALIAS_NAME_RUNID}"
并使用
从中获取已发布的工件 - task: DownloadPipelineArtifact@2
name: DownloadFromUpstream
displayName: 'Download file from upstream'
condition: eq(variables['Build.Reason'], 'ResourceTrigger')
inputs:
source: specific
project: $(RESOURCES_PIPELINE_ALIAS_NAME_PROJECTID)
pipeline: $(RESOURCES_PIPELINE_ALIAS_NAME_PIPELINEID)
runId: $(RESOURCES_PIPELINE_ALIAS_NAME_RUNID)
preferTriggeringPipeline: true
artifact: 'published-artifact-name'
path: .
引用:
关于azure-pipelines - 我应该如何在另一个管道的末端触发一个管道?使用 msdocs 中的示例会导致 "pipeline resource input must be valid"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63019825/
我正在尝试将 View 的背景设置为具有从 Palette api 生成颜色的渐变 渐变将从纯色逐渐淡出,但我希望纯色部分占据大部分背景。现在它开始稳定,然后在 View 宽度上逐渐淡出,我希望它从
我是一名优秀的程序员,十分优秀!