Travis CI 在子目录中

发布于 2024-12-11 09:43:10 字数 403 浏览 2 评论 0原文

我有一个 gem,其子目录 (test) 包含用于测试项目的 Rails 3.1.1 应用程序。我正在尝试设置 Travis-CI 进行持续集成,但是我不知道如何设置我的 .travis.yml 配置。我有:

gemfile: test/Gemfile
rvm:
  - 1.8.7
  - 1.9.2
  - 1.9.3
  - jruby
  - ree
script: sh -e 'cd test' && bundle exec rake db:drop db:create db:migrate test

哪些原因:

sh: Can't open cd test

有什么想法吗?

I have a gem with a subdirectory (test) containing a Rails 3.1.1 application used to test the project. I'm trying to setup Travis-CI for continuous integration, however I cannot figure out how to setup my .travis.yml configuration. I have:

gemfile: test/Gemfile
rvm:
  - 1.8.7
  - 1.9.2
  - 1.9.3
  - jruby
  - ree
script: sh -e 'cd test' && bundle exec rake db:drop db:create db:migrate test

Which causes:

sh: Can't open cd test

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把梦留给海 2024-12-18 09:43:10

发现这是一些文档的问题。脚本调用应该是:

script: sh -c 'cd test && bundle exec rake db:drop db:create db:migrate test'

Found it was an issue with some of the documentation. The script call should have been:

script: sh -c 'cd test && bundle exec rake db:drop db:create db:migrate test'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文