首页 > 解决方案 > 使用 TravisCI 构建 expo Android 应用程序

问题描述

我尝试使用 TravisCI 构建一个 expo React-Native Android 应用程序

这是 .travis.yml 文件: { "os": "linux", "dist": "trusty", "cache": { "directories": [ "node_modules" ] }, "group": "stable", "script": [ "npm i -g exp", "exp login -u ... -p ...", "npm install", "npm test", "exp build:android" ], "node_js": "stable", "language": "node_js" }

在流程结束时,一切正常,Travis 正在触发 expo 构建。

Waiting for build to complete. You can press Ctrl+C to exit.

我如何在 Travis 中做出反应?我可以做一些条件输入吗?我必须以完全的方式构建应用程序吗?

标签: androidreact-nativetravis-ciexpo

解决方案


推荐阅读