我有一个test
包含用于测试项目的 Rails 3.1.1 应用程序的子目录 () 的 gem。我正在尝试设置 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
有任何想法吗?