Android 圈子 CI 的 Nativescript 云构建
Nativescript Cloud Build for Android Circle CI
我正在尝试为示例 nativescript 应用程序创建 circle ci 构建作业。该工作可在 https://circleci.com/gh/rakeshgirase/CloudBuild/3 找到。它失败并出现错误 您缺少 nativescript-cloud 扩展,您将无法执行云构建。有人可以指导我如何解决这个问题吗?
您需要 运行 tns 云设置命令来安装 nativescript 云扩展。
https://docs.nativescript.org/tooling/docs-cli/cloud/cloud-setup
如果为 circle ci 安装了 nativescript 云扩展,您需要执行此处提到的步骤。
https://discourse.nativescript.org/t/nativescript-4-not-working-on-circleci/6363
您应该将以下内容添加到您的 config.yml 文件中。它基本上 select 这些插件要求的选择。
- run: echo yes | tns setup
- run: echo yes | tns cloud setup
我正在尝试为示例 nativescript 应用程序创建 circle ci 构建作业。该工作可在 https://circleci.com/gh/rakeshgirase/CloudBuild/3 找到。它失败并出现错误 您缺少 nativescript-cloud 扩展,您将无法执行云构建。有人可以指导我如何解决这个问题吗?
您需要 运行 tns 云设置命令来安装 nativescript 云扩展。 https://docs.nativescript.org/tooling/docs-cli/cloud/cloud-setup
如果为 circle ci 安装了 nativescript 云扩展,您需要执行此处提到的步骤。 https://discourse.nativescript.org/t/nativescript-4-not-working-on-circleci/6363
您应该将以下内容添加到您的 config.yml 文件中。它基本上 select 这些插件要求的选择。
- run: echo yes | tns setup
- run: echo yes | tns cloud setup