2014-08-27 19:59:16 -04:00
|
|
|
language: ruby
|
2014-12-18 15:09:58 -05:00
|
|
|
sudo: false
|
2016-04-19 03:15:16 -04:00
|
|
|
|
|
|
|
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
|
2012-03-09 16:19:55 -05:00
|
|
|
before_install:
|
2015-02-18 11:30:25 -05:00
|
|
|
- "rm ${BUNDLE_GEMFILE}.lock"
|
2016-04-19 03:15:16 -04:00
|
|
|
- "[ -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"
|
|
|
|
|
2014-12-18 15:09:58 -05:00
|
|
|
before_script:
|
|
|
|
- bundle update
|
2016-04-19 03:15:16 -04:00
|
|
|
|
2016-05-09 15:42:28 -04:00
|
|
|
# Set Sauce Labs username and access key. Obfuscated, purposefully not encrypted.
|
|
|
|
# Decodes to e.g. `export VARIABLE=VALUE`
|
|
|
|
- $(base64 --decode <<< "ZXhwb3J0IFNBVUNFX0FDQ0VTU19LRVk9YTAzNTM0M2YtZTkyMi00MGIzLWFhM2MtMDZiM2VhNjM1YzQ4")
|
|
|
|
- $(base64 --decode <<< "ZXhwb3J0IFNBVUNFX1VTRVJOQU1FPXJ1YnlvbnJhaWxz")
|
|
|
|
|
2016-04-19 03:15:16 -04:00
|
|
|
script: 'ci/travis.rb'
|
|
|
|
|
2011-07-15 03:48:10 -04:00
|
|
|
env:
|
2014-08-21 09:57:27 -04:00
|
|
|
matrix:
|
|
|
|
- "GEM=railties"
|
|
|
|
- "GEM=ap"
|
2015-12-14 11:44:51 -05:00
|
|
|
- "GEM=ac"
|
2016-03-01 19:50:19 -05:00
|
|
|
- "GEM=ac FAYE=1"
|
2016-05-09 15:42:28 -04:00
|
|
|
- "GEM=ac:integration"
|
|
|
|
- "GEM=ac:integration FAYE=1"
|
2015-03-05 13:50:46 -05:00
|
|
|
- "GEM=am,amo,as,av,aj"
|
2016-04-28 02:59:32 -04:00
|
|
|
- "GEM=as PRESERVE_TIMEZONES=1"
|
2014-08-21 09:57:27 -04:00
|
|
|
- "GEM=ar:mysql2"
|
|
|
|
- "GEM=ar:sqlite3"
|
|
|
|
- "GEM=ar:postgresql"
|
2014-08-18 03:19:41 -04:00
|
|
|
- "GEM=aj:integration"
|
2015-06-05 16:28:11 -04:00
|
|
|
- "GEM=guides"
|
2016-04-19 03:15:16 -04:00
|
|
|
|
2014-10-13 07:42:27 -04:00
|
|
|
rvm:
|
2016-05-04 11:56:21 -04:00
|
|
|
- 2.2.5
|
|
|
|
- 2.3.1
|
2014-10-13 07:42:27 -04:00
|
|
|
- ruby-head
|
2016-04-19 03:15:16 -04:00
|
|
|
|
2013-08-01 14:20:05 -04:00
|
|
|
matrix:
|
2016-02-05 12:31:18 -05:00
|
|
|
include:
|
|
|
|
# Latest compiled version in http://rubies.travis-ci.org
|
2016-05-04 11:56:21 -04:00
|
|
|
- rvm: 2.3.1
|
2016-04-12 09:49:21 -04:00
|
|
|
env:
|
|
|
|
- "GEM=ar:mysql2"
|
|
|
|
addons:
|
|
|
|
mariadb: 10.0
|
2016-02-05 12:31:18 -05:00
|
|
|
- rvm: jruby-9.0.5.0
|
|
|
|
jdk: oraclejdk8
|
|
|
|
env:
|
|
|
|
- "JRUBY_OPTS='--dev -J-Xmx1024M'"
|
|
|
|
- "GEM='ap'"
|
2013-08-01 14:20:05 -04:00
|
|
|
allow_failures:
|
2015-12-14 20:45:25 -05:00
|
|
|
- rvm: ruby-head
|
2016-04-25 20:30:37 -04:00
|
|
|
- rvm: jruby-9.0.5.0
|
2016-05-09 15:42:28 -04:00
|
|
|
- env: "GEM=ac:integration"
|
|
|
|
- env: "GEM=ac:integration FAYE=1"
|
2014-01-01 21:35:51 -05:00
|
|
|
fast_finish: true
|
2016-04-19 03:15:16 -04:00
|
|
|
|
2011-07-26 14:17:58 -04:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
irc:
|
2011-10-08 14:13:48 -04:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
|
|
|
channels:
|
|
|
|
- "irc.freenode.org#rails-contrib"
|
2011-12-17 10:05:14 -05:00
|
|
|
campfire:
|
2011-12-18 18:37:05 -05:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
|
|
|
rooms:
|
2012-12-06 12:39:13 -05:00
|
|
|
- secure: "YA1alef1ESHWGFNVwvmVGCkMe4cUy4j+UcNvMUESraceiAfVyRMAovlQBGs6\n9kBRm7DHYBUXYC2ABQoJbQRLDr/1B5JPf/M8+Qd7BKu8tcDC03U01SMHFLpO\naOs/HLXcDxtnnpL07tGVsm0zhMc5N8tq4/L3SHxK7Vi+TacwQzI="
|