2016-03-19 07:23:19 +09:00
|
|
|
language: ruby
|
2017-04-27 05:32:23 +09:00
|
|
|
cache:
|
|
|
|
bundler: true
|
2017-05-03 09:04:16 +09:00
|
|
|
yarn: false
|
2017-04-20 06:21:00 +09:00
|
|
|
dist: trusty
|
2017-04-26 03:14:34 +09:00
|
|
|
sudo: false
|
2016-03-19 07:23:19 +09:00
|
|
|
|
2016-10-16 00:44:43 +09:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2016-03-19 07:31:07 +09:00
|
|
|
env:
|
|
|
|
global:
|
2016-03-21 16:41:00 +09:00
|
|
|
- LOCAL_DOMAIN=cb6e6126.ngrok.io
|
|
|
|
- LOCAL_HTTPS=true
|
|
|
|
- RAILS_ENV=test
|
2017-02-06 03:18:11 +09:00
|
|
|
- CXX=g++-4.8
|
2017-05-03 19:20:38 +09:00
|
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
|
|
|
- PARALLEL_TEST_PROCESSORS=2
|
|
|
|
|
2016-03-19 07:31:07 +09:00
|
|
|
addons:
|
|
|
|
postgresql: 9.4
|
2017-04-26 03:14:34 +09:00
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- trusty-media
|
|
|
|
packages:
|
|
|
|
- g++-4.8
|
|
|
|
- ffmpeg
|
2016-03-19 07:31:07 +09:00
|
|
|
|
2016-03-19 07:23:19 +09:00
|
|
|
rvm:
|
2017-04-16 21:57:30 +09:00
|
|
|
- 2.3.4
|
2017-04-11 05:47:41 +09:00
|
|
|
- 2.4.1
|
2016-03-19 07:23:19 +09:00
|
|
|
|
2016-03-19 07:31:07 +09:00
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
2017-05-03 19:20:38 +09:00
|
|
|
bundler_args: --without development production --retry=3 --jobs=16
|
2016-08-25 02:06:54 +09:00
|
|
|
|
2016-09-03 21:02:24 +09:00
|
|
|
install:
|
2017-04-15 09:05:41 +09:00
|
|
|
- nvm install
|
2016-10-15 20:48:38 +09:00
|
|
|
- npm install -g yarn
|
2016-09-03 21:20:59 +09:00
|
|
|
- bundle install
|
2016-10-15 20:48:38 +09:00
|
|
|
- yarn install
|
2016-09-03 21:02:24 +09:00
|
|
|
|
2016-03-19 07:31:07 +09:00
|
|
|
before_script:
|
2017-05-03 19:20:38 +09:00
|
|
|
- bundle exec rake parallel:create parallel:load_schema parallel:prepare
|
2017-05-03 09:04:16 +09:00
|
|
|
- bundle exec rails assets:precompile
|
2016-03-19 07:31:07 +09:00
|
|
|
|
2016-10-15 23:43:52 +09:00
|
|
|
script:
|
2017-05-03 19:20:38 +09:00
|
|
|
- bundle exec parallel_test spec/ --group-by filesize --type rspec
|
2016-10-15 23:43:52 +09:00
|
|
|
- npm test
|
2017-04-17 02:37:01 +09:00
|
|
|
- i18n-tasks unused
|