在特定运行器上运行GitLab CI任务
原文英文,约300词,阅读约需1分钟。发表于: 。I have two runners in my project. One is on Microsoft Azure for Azure deployments, and the other is on DigitalOcean for its deployments. Today, I realized that all of my jobs are being handled by...
在项目中,由于所有任务都由Azure运行器处理,导致数据库连接延迟过大。为特定任务配置指定的运行器,可以在.gitlab-ci.yml文件中使用tags关键字。首先,在项目设置中为运行器添加唯一标签,然后在任务定义中引用该标签,以确保任务只由指定的运行器处理。