我想用CircleCI。
我试着开始。
https://circleci.com/docs/2.0/getting-started/#section=getting-started
存储库名称为'hello-world',具体分支名称为‘circleci project-setup’
We’ll commit the config below to duri0214/hello-world on a new branch called circleci-project-setup. If you prefer, you can use an existing config.



单击Start Building并按照提示将您的配置添加到新分支并启动您的第一个管道。注意:您还可以手动将config.yml添加到.circleci文件夹下的项目根目录中,并将其推送到您的VCS提供商。
Click Start Building???这不算什么。文档是否旧?
我试着commit and run按钮。
失败,失败,失败

为什么我不能
下一次尝试


计算缓存键时出错:模板:缓存键:1:7:在执行"cacheKey“时出错:调用校验和:打开/主目录/圈/项目/要求.txt时出错:没有这样的文件或目录
#!/bin/bash -eo -r失败如果为true;则pip requirements.txt --user -r requirements.txt否则pip install -r requirements.txt fi
错误:无法打开需求文件:Errno 2没有这样的文件或目录:'requirements.txt‘已退出,代码为退出状态%1 CircleCI收到退出代码%1
发布于 2021-02-25 22:44:49
哦,我的天..。我使用circleci目录而不是.circleci。
成功..。

发布于 2021-02-09 23:02:38
正如文档所述,您需要将circleci配置放在.circlei目录
Click Start Building and follow the prompt to add your config to a new branch and start your first pipeline. Note: You can also manually add a config.yml to your project root under a .circleci folder and push this to your VCS provider.关于Click Start Building,我猜可能是文档遗漏了。
https://stackoverflow.com/questions/66121290
复制相似问题