Travis CI 在子目录中
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发现这是一些文档的问题。脚本调用应该是:
Found it was an issue with some of the documentation. The script call should have been: