7

我有一个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

有任何想法吗?

4

1 回答 1

4

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

script: sh -c 'cd test && bundle exec rake db:drop db:create db:migrate test'
于 2011-10-22T21:40:33.983 回答