特拉维斯CI在子目录中
我有一个包含用于测试项目的Rails 3.1.1应用程序的子目录( test
)的宝石。 我试图设置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
有任何想法吗?
发现这是一些文件的问题。 脚本调用应该是:
script: sh -c 'cd test && bundle exec rake db:drop db:create db:migrate test'
链接地址: http://www.djcxy.com/p/55763.html
上一篇: Travis CI In Sub Directory
下一篇: Last td on new line?