mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
3027970464
Uses latest precompiled JRuby so that we don't spend time downloading versions Travis has not already compiled. http://rubies.travis-ci.org/ Uses latest jdk: oraclejdk8 per https://docs.travis-ci.com/user/build-environment-updates/2015-02-03/#Ruby-VM and https://docs.travis-ci.com/user/languages/ruby/#Supported-Ruby-Versions-and-RVM Follows on work in https://github.com/rails/rails/pull/23927 which was reverted26fe5fa08d
JRUBY_OPTS minimize GC, disable JIT, for max test speed - https://github.com/rails/rails/pull/16613 - https://github.com/rails/rails/pull/17088 Have Rails use JRuby-compatible Rake 11.1 - The Rake task was passing --verbose, an invalid option, to contemporary JRuby - https://github.com/ruby/rake/pull/120 - https://github.com/rails-api/active_model_serializers/pull/1585 - https://github.com/jruby/jruby/issues/3653#issuecomment-195883717 No advantage to directly mounting JRuby over installing from cache; both on S3 -b2d5b336b5
-f4fad041b2
60 lines
1.4 KiB
YAML
60 lines
1.4 KiB
YAML
language: ruby
|
|
sudo: false
|
|
script: 'ci/travis.rb'
|
|
before_install:
|
|
- gem install bundler
|
|
- "rm ${BUNDLE_GEMFILE}.lock"
|
|
- curl -L https://github.com/kr/beanstalkd/archive/v1.10.tar.gz | tar xz -C /tmp
|
|
- cd /tmp/beanstalkd-1.10/
|
|
- make
|
|
- ./beanstalkd &
|
|
- cd $TRAVIS_BUILD_DIR
|
|
before_script:
|
|
- bundle update
|
|
cache: bundler
|
|
env:
|
|
matrix:
|
|
- "GEM=railties"
|
|
- "GEM=ap"
|
|
- "GEM=ac"
|
|
- "GEM=ac FAYE=1"
|
|
- "GEM=am,amo,as,av,aj"
|
|
- "GEM=ar:mysql2"
|
|
- "GEM=ar:sqlite3"
|
|
- "GEM=ar:postgresql"
|
|
- "GEM=aj:integration"
|
|
- "GEM=guides"
|
|
rvm:
|
|
- 2.2.4
|
|
- 2.3.0
|
|
- ruby-head
|
|
matrix:
|
|
include:
|
|
# Latest compiled version in http://rubies.travis-ci.org
|
|
- rvm: jruby-9.0.5.0
|
|
jdk: oraclejdk8
|
|
env:
|
|
- "JRUBY_OPTS='--dev -J-Xmx1024M'"
|
|
- "GEM='ap'"
|
|
allow_failures:
|
|
- rvm: ruby-head
|
|
fast_finish: true
|
|
notifications:
|
|
email: false
|
|
irc:
|
|
on_success: change
|
|
on_failure: always
|
|
channels:
|
|
- "irc.freenode.org#rails-contrib"
|
|
campfire:
|
|
on_success: change
|
|
on_failure: always
|
|
rooms:
|
|
- secure: "YA1alef1ESHWGFNVwvmVGCkMe4cUy4j+UcNvMUESraceiAfVyRMAovlQBGs6\n9kBRm7DHYBUXYC2ABQoJbQRLDr/1B5JPf/M8+Qd7BKu8tcDC03U01SMHFLpO\naOs/HLXcDxtnnpL07tGVsm0zhMc5N8tq4/L3SHxK7Vi+TacwQzI="
|
|
bundler_args: --without test --jobs 3 --retry 3
|
|
services:
|
|
- memcached
|
|
- redis
|
|
- rabbitmq
|
|
addons:
|
|
postgresql: "9.4"
|