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
|
2017-02-21 13:41:17 -05:00
|
|
|
- node_modules
|
|
|
|
- $HOME/.nvm
|
2016-04-19 03:15:16 -04:00
|
|
|
|
|
|
|
services:
|
|
|
|
- memcached
|
|
|
|
|
|
|
|
addons:
|
2017-09-01 13:18:09 -04:00
|
|
|
postgresql: "9.6"
|
2017-10-19 12:01:52 -04:00
|
|
|
chrome: stable
|
2017-09-28 16:43:37 -04:00
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- sourceline: "ppa:mc3man/trusty-media"
|
|
|
|
- sourceline: "ppa:ubuntuhandbook1/apps"
|
|
|
|
packages:
|
|
|
|
- ffmpeg
|
|
|
|
- mupdf
|
|
|
|
- mupdf-tools
|
2016-04-19 03:15:16 -04:00
|
|
|
|
|
|
|
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"
|
2017-09-02 04:22:02 -04:00
|
|
|
- "travis_retry gem update --system"
|
|
|
|
- "travis_retry gem update bundler"
|
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"
|
2017-08-14 11:43:46 -04:00
|
|
|
- "[[ -z $encrypted_8a915ebdd931_key && -z $encrypted_8a915ebdd931_iv ]] || openssl aes-256-cbc -K $encrypted_8a915ebdd931_key -iv $encrypted_8a915ebdd931_iv -in activestorage/test/service/configurations.yml.enc -out activestorage/test/service/configurations.yml -d"
|
2017-02-21 13:41:17 -05:00
|
|
|
- "[[ $GEM != 'av:ujs' ]] || nvm install node"
|
|
|
|
- "[[ $GEM != 'av:ujs' ]] || node --version"
|
|
|
|
- "[[ $GEM != 'av:ujs' ]] || (cd actionview && npm install)"
|
|
|
|
|
2014-12-18 15:09:58 -05:00
|
|
|
before_script:
|
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")
|
2017-06-21 21:10:08 -04:00
|
|
|
- redis-server --bind 127.0.0.1 --port 6379 --requirepass 'password' --daemonize yes
|
2016-05-09 15:42:28 -04:00
|
|
|
|
2016-04-19 03:15:16 -04:00
|
|
|
script: 'ci/travis.rb'
|
|
|
|
|
2011-07-15 03:48:10 -04:00
|
|
|
env:
|
2016-11-16 20:27:34 -05:00
|
|
|
global:
|
|
|
|
- "JRUBY_OPTS='--dev -J-Xmx1024M'"
|
2014-08-21 09:57:27 -04:00
|
|
|
matrix:
|
|
|
|
- "GEM=railties"
|
2016-12-24 10:01:44 -05:00
|
|
|
- "GEM=ap,ac"
|
2017-08-10 15:58:30 -04:00
|
|
|
- "GEM=am,amo,as,av,aj,ast"
|
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"
|
2015-06-05 16:28:11 -04:00
|
|
|
- "GEM=guides"
|
2016-12-24 10:01:44 -05:00
|
|
|
- "GEM=ac:integration"
|
2016-04-19 03:15:16 -04:00
|
|
|
|
2014-10-13 07:42:27 -04:00
|
|
|
rvm:
|
2017-09-14 14:12:45 -04:00
|
|
|
- 2.2.8
|
|
|
|
- 2.3.5
|
|
|
|
- 2.4.2
|
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:
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.4.2
|
2017-02-21 13:41:17 -05:00
|
|
|
env: "GEM=av:ujs"
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.2.8
|
2016-11-27 01:33:15 -05:00
|
|
|
env: "GEM=aj:integration"
|
|
|
|
services:
|
|
|
|
- memcached
|
|
|
|
- rabbitmq
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.3.5
|
2016-11-27 01:33:15 -05:00
|
|
|
env: "GEM=aj:integration"
|
|
|
|
services:
|
|
|
|
- memcached
|
|
|
|
- rabbitmq
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.4.2
|
2017-01-26 23:42:25 -05:00
|
|
|
env: "GEM=aj:integration"
|
|
|
|
services:
|
|
|
|
- memcached
|
|
|
|
- rabbitmq
|
2016-11-27 01:33:15 -05:00
|
|
|
- rvm: ruby-head
|
|
|
|
env: "GEM=aj:integration"
|
|
|
|
services:
|
|
|
|
- memcached
|
|
|
|
- rabbitmq
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.3.5
|
2016-04-12 09:49:21 -04:00
|
|
|
env:
|
2016-11-27 01:33:15 -05:00
|
|
|
- "GEM=ar:mysql2 MYSQL=mariadb"
|
2016-04-12 09:49:21 -04:00
|
|
|
addons:
|
2017-07-19 10:27:42 -04:00
|
|
|
mariadb: 10.2
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.3.5
|
2017-01-31 11:23:13 -05:00
|
|
|
env:
|
|
|
|
- "GEM=ar:sqlite3_mem"
|
2017-09-14 14:12:45 -04:00
|
|
|
- rvm: 2.3.5
|
2017-04-12 09:09:15 -04:00
|
|
|
env:
|
|
|
|
- "GEM=ar:postgresql POSTGRES=9.2"
|
|
|
|
addons:
|
|
|
|
postgresql: "9.2"
|
2017-09-06 20:57:30 -04:00
|
|
|
- rvm: jruby-9.1.13.0
|
2016-02-05 12:31:18 -05:00
|
|
|
jdk: oraclejdk8
|
|
|
|
env:
|
2016-11-16 19:50:37 -05:00
|
|
|
- "GEM=ap"
|
2017-09-06 20:57:30 -04:00
|
|
|
- rvm: jruby-9.1.13.0
|
2016-11-16 17:23:10 -05:00
|
|
|
jdk: oraclejdk8
|
|
|
|
env:
|
2017-01-22 11:51:05 -05:00
|
|
|
- "GEM=am,amo,aj"
|
2013-08-01 14:20:05 -04:00
|
|
|
allow_failures:
|
2015-12-14 20:45:25 -05:00
|
|
|
- rvm: ruby-head
|
2017-09-06 20:57:30 -04:00
|
|
|
- rvm: jruby-9.1.13.0
|
2016-12-24 10:01:44 -05:00
|
|
|
- env: "GEM=ac:integration"
|
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:
|
2017-08-17 07:30:00 -04:00
|
|
|
# "irc.freenode.org#rails-contrib"
|
|
|
|
- secure: "QFKSOK7xQiWWqTzYfYm0XWoW7idzuxT57MBW9i9EASyRLEPuDwZEubKRP40Y7wPx7ylQd9lp6kJheeLnrDvvTjFbW3sWv9GDRl4WlOU8sG/Kv7MXAASXlDqzyJxxXTtzLeXz2iwY296kOBuKxKxl923eTvEGeocwH02QGo14LpQ="
|
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="
|