我正在利用YML的冷藏管道,用于我的CI进程,它正在为多个分支进行波浪。
我想使下一个被 que的管道能够等到目前管道的所有阶段完成。
我正在利用YML的冷藏管道,用于我的CI进程,它正在为多个分支进行波浪。
我想使下一个被 que的管道能够等到目前管道的所有阶段完成。
我可以理解你的情况。
当你执行多功能管道时,管道代理人的处决在各阶段之间跳跃。
例如:
管道代理人不会完全运行目前的所有阶段,然后继续管理下一个管道。
I am afraid that there is no out-of-box method can meet your requirement.
当启动多管线时,按照收件顺序,将多管线加起来。 管道工程完成后,B或C管道工程的工程可按收到的订单开始。
YAML管道不支持政策。 每个管道都独立于其他管道,也不知道其他管道。 换言之,您的两条连续承诺可能会引发两条管道,这两条管道在不相互等待的情况下将执行同样的分级。
对于工作,如果你需要使用多种语文的话,你可以增加。 核准和检查 根基——> 审批和检查。
在这种情况下,当你管理管道时,你需要人工核准管道,然后可以运行。 或者,它将等待批准。
如果你能够把多功能改为多功能,那么你可以使用 排他/,让管道在座。
参照步骤:
步骤1:在上添加排他性锁。 根基——> 审批和检查。
步骤2:在管道中使用多功能装置和设置<条码>锁体:顺序条码>
例如:
pool:
name: default
lockBehavior: sequential
stages:
- stage:
jobs:
- job: test1
steps:
- script: echo "1"
- job: test2
steps:
- script: echo "1"
- job: test3
steps:
- script: echo "1"
我完全理解你的要求。 您可在网站(Developer Community)上提交建议票,以报告这一特点。
I have a React.js application which is building via vite. The package.json file is: { "name": "website", "private": true, "version": "0.0.0", &...
I have been trying to host a basic Chat app on Azure using Express. The server.js file uses the Express middleware of express.static(__dirname) to function properly. When I test locally on port 3000 ...
I set the environment variable "NODE_TLS_REJECT_UNAUTHORIZED=0" in my linux environment because I need to set this variable in a Selfhosted agent. When the agent is created and the ...
I am trying to install or upgrade helm chart through azure devops pipeline, but the pipeline getting failed with the following error. WARNING: Merged "akscluster-admin" as current ...
I have a python code running in my azure devops pipeline. I see the output within azure but would like to know how to get this output into a storable format and send it as data source to Power BI for ...
I m following this tutorial to automate the creation of release notes using the wiki in Azure DevOps. Steps are very basic and there are not many variables that I believe would cause the error. When ...
We have been using TFS on our own server for a while. We would like to move it in the cloud. Is there any good hosted service? Note: we would like to import all our source and projects
Visual Studio 2008 Database Edition (Data Dude) has the ability to perform schema comparisons between databases and generate a script which migrates from one database to the other. Is it possible to ...