Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用无人机作为 CI,想知道如何禁用同时构建。发生的事情是,当我向 git repo 提交两个提交时,drone 将在每个提交上触发两个构建。如何让第二个构建等到第一个构建完成?
关于Drone的开源版本DOCKER_MAX_PROCS:将您的无人机代理的环境变量设置为1,即docker run -e DOCKER_MAX_PROCS=1 [...] drone/drone:0.5 agent. 代理将同时运行一个构建,其他构建将排队。
DOCKER_MAX_PROCS
1
docker run -e DOCKER_MAX_PROCS=1 [...] drone/drone:0.5 agent
有关详细信息,请参阅自述文件中的安装参考部分。