y.g

Results 13 comments of y.g

Yes, please see the release notes https://github.com/FlowCI/flow-platform-x/releases

目前还没有在 mac m1 下测试过。。可以看下 core 中是什么错误嘛?

从日志上看应该是默认的 `./server.sh start` 命令没找到 IP 地址,所以日志里显示的都是 `http://:8080`, `http://http://:2015` 这些。 可以用 `-h ip` 来定义 IP 地址 `./server.sh -h your_ip start`

Agent 是通过 docker 启动的?还是直接运行 Agent 的可执行文件启动的? 如果是本地直接运行 Agent 的可执行文件启动的,需要启动之前添加 `FLOWCI_AGENT_VOLUMES` 环境变量,让 Agent 自动加载 python 的运行环境 `export FLOWCI_AGENT_VOLUMES="name=pyenv,dest=/ci/python,script=init.sh,image=flowci/pyenv,init=init-pyenv-volume.sh"`

please check this repo https://github.com/FlowCI/helm-chart

应该是没有找到 server,需要在 settings 里设置一下 server url ![Screenshot 2021-11-30 at 14 32 02](https://user-images.githubusercontent.com/23307997/144056598-6fa8a3d7-402d-4681-b54c-7395e8492abc.png)

是的,iOS 模板目前签名这部分还没调试,目前还跑不通,建议使用用 fastlane。 在对应得 Agent 上安装 fastlane, 之后在 YAML 中定义, 类似于这样: ```bash - name: run fastlane bash: | cd $FLOWCI_GIT_REPO fastlane test ```

@Qie2035 由于网络和安全的一些原因,云上的服务已经取消了,目前只支持自建服务器的部署方式

是私有仓库嘛? 如果是的话需要配置 Git 仓库的访问权限,可以参考 https://flowci.github.io/#/cn/git/index

这个需要看一下你的 YAML 配置 如果在 Step 中没有配置镜像的话,就会在 flowci/agent 中执行 比如:就会在 Agent 上直接执行 ``` steps: - name: clone plugin: 'gitclone' allow_failure: false ``` 如果在 Step 中配置了 Image,就会在配置的 Image 中执行,比如 ``` steps: -...