bb93276b8d
- We were running into issues with old bundler versions on 4.2 builds. So we bumped the bundler version on 4-2-stable branch in https://github.com/rails/rails/pull/26592. - This commit applies same change to master as per discussion in https://github.com/rails/rails/pull/26592#issuecomment-254026755.
84 lines
1.9 KiB
YAML
84 lines
1.9 KiB
YAML
language: ruby
|
|
sudo: false
|
|
|
|
cache:
|
|
bundler: true
|
|
directories:
|
|
- /tmp/cache/unicode_conformance
|
|
- /tmp/beanstalkd-1.10
|
|
|
|
services:
|
|
- memcached
|
|
- redis
|
|
- rabbitmq
|
|
|
|
addons:
|
|
postgresql: "9.4"
|
|
|
|
bundler_args: --without test --jobs 3 --retry 3
|
|
before_install:
|
|
- "rm ${BUNDLE_GEMFILE}.lock"
|
|
- "gem update bundler"
|
|
- "[ -f /tmp/beanstalkd-1.10/Makefile ] || (curl -L https://github.com/kr/beanstalkd/archive/v1.10.tar.gz | tar xz -C /tmp)"
|
|
- "pushd /tmp/beanstalkd-1.10 && make && (./beanstalkd &); popd"
|
|
|
|
before_script:
|
|
- bundle update
|
|
|
|
# Set Sauce Labs username and access key. Obfuscated, purposefully not encrypted.
|
|
# Decodes to e.g. `export VARIABLE=VALUE`
|
|
- $(base64 --decode <<< "ZXhwb3J0IFNBVUNFX0FDQ0VTU19LRVk9YTAzNTM0M2YtZTkyMi00MGIzLWFhM2MtMDZiM2VhNjM1YzQ4")
|
|
- $(base64 --decode <<< "ZXhwb3J0IFNBVUNFX1VTRVJOQU1FPXJ1YnlvbnJhaWxz")
|
|
|
|
script: 'ci/travis.rb'
|
|
|
|
env:
|
|
matrix:
|
|
- "GEM=railties"
|
|
- "GEM=ap"
|
|
- "GEM=ac"
|
|
- "GEM=ac:integration"
|
|
- "GEM=am,amo,as,av,aj"
|
|
- "GEM=as PRESERVE_TIMEZONES=1"
|
|
- "GEM=ar:mysql2"
|
|
- "GEM=ar:sqlite3"
|
|
- "GEM=ar:postgresql"
|
|
- "GEM=aj:integration"
|
|
- "GEM=guides"
|
|
|
|
rvm:
|
|
- 2.2.5
|
|
- 2.3.1
|
|
- ruby-head
|
|
|
|
matrix:
|
|
include:
|
|
# Latest compiled version in http://rubies.travis-ci.org
|
|
- rvm: 2.3.1
|
|
env:
|
|
- "GEM=ar:mysql2"
|
|
addons:
|
|
mariadb: 10.0
|
|
- rvm: jruby-9.0.5.0
|
|
jdk: oraclejdk8
|
|
env:
|
|
- "JRUBY_OPTS='--dev -J-Xmx1024M'"
|
|
- "GEM='ap'"
|
|
allow_failures:
|
|
- rvm: ruby-head
|
|
- rvm: jruby-9.0.5.0
|
|
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="
|