about summary refs log tree commit diff
path: root/.travis.yml
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2018-01-20 04:53:30 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-01-19 20:53:30 +0100
commit7233ac07d2f182969def963bf25aa2fc705f434c (patch)
tree02122e70b7f517d11e055a538f9711164ae9298a /.travis.yml
parentb1e03197fa933f290979865d78381a3b22c05c69 (diff)
Add support Ruby v2.5.0 (#6097)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 59d495c43..496315558 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -40,20 +40,20 @@ addons:
     - yarn
 
 rvm:
-  - 2.3.4
   - 2.4.2
+  - 2.5.0
 
 services:
   - redis-server
 
 install:
+  - gem update --system
   - nvm install
   - bundle install --path=vendor/bundle --without development production --retry=3 --jobs=16
   - yarn install
 
 before_script:
-  - bundle exec rake parallel:create parallel:load_schema parallel:prepare
-  - bundle exec rails assets:precompile
+  - ./bin/rails parallel:create parallel:load_schema parallel:prepare assets:precompile
   - ln -s /usr/bin/x86_64-linux-gnu-g++-6 "$HOME/g++"
 
 script: