在 Travis 上使用 JRuby 9K CI
Use JRuby 9K on Travis CI
我更新了 Travis configuration of one of my gems to include jruby-9.0.0.0
instead of jruby-9.0.0.0.rc2
, but it looks like Travis is still using jruby-9.0.0.0.pre1
。我能做些什么来强制 Travis 使用 9K 生产版本吗?
尝试添加以下脚本,以安装 rvm head:
'if [[ "$TRAVIS_RUBY_VERSION" =~ "jruby" ]]; then rvm get head && rvm reload && rvm use --install $TRAVIS_RUBY_VERSION; fi'
... 然后 rvm: jruby-9.0.0.0 应该可以工作
我更新了 Travis configuration of one of my gems to include jruby-9.0.0.0
instead of jruby-9.0.0.0.rc2
, but it looks like Travis is still using jruby-9.0.0.0.pre1
。我能做些什么来强制 Travis 使用 9K 生产版本吗?
尝试添加以下脚本,以安装 rvm head:
'if [[ "$TRAVIS_RUBY_VERSION" =~ "jruby" ]]; then rvm get head && rvm reload && rvm use --install $TRAVIS_RUBY_VERSION; fi'
... 然后 rvm: jruby-9.0.0.0 应该可以工作