2016-03-18 15:23:19 -07:00
|
|
|
language: ruby
|
2017-04-26 13:32:23 -07:00
|
|
|
cache:
|
2017-05-19 02:44:00 -07:00
|
|
|
bundler: true
|
|
|
|
yarn: true
|
|
|
|
directories:
|
2018-02-09 06:29:48 -08:00
|
|
|
- node_modules
|
|
|
|
- public/assets
|
|
|
|
- public/packs-test
|
|
|
|
- tmp/cache/babel-loader
|
2017-04-19 14:21:00 -07:00
|
|
|
dist: trusty
|
2018-01-24 19:23:09 -08:00
|
|
|
sudo: false
|
2018-01-15 21:15:28 -08:00
|
|
|
branches:
|
|
|
|
only:
|
2018-02-09 06:29:48 -08:00
|
|
|
- master
|
2016-03-18 15:23:19 -07:00
|
|
|
|
2016-10-15 08:44:43 -07:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2016-03-18 15:31:07 -07:00
|
|
|
env:
|
|
|
|
global:
|
2016-03-21 00:41:00 -07:00
|
|
|
- LOCAL_DOMAIN=cb6e6126.ngrok.io
|
|
|
|
- LOCAL_HTTPS=true
|
|
|
|
- RAILS_ENV=test
|
2017-05-03 03:20:38 -07:00
|
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
|
|
|
- PARALLEL_TEST_PROCESSORS=2
|
|
|
|
|
2016-03-18 15:31:07 -07:00
|
|
|
addons:
|
|
|
|
postgresql: 9.4
|
2017-04-25 11:14:34 -07:00
|
|
|
apt:
|
|
|
|
sources:
|
2018-02-09 06:29:48 -08:00
|
|
|
- trusty-media
|
|
|
|
- sourceline: deb https://dl.yarnpkg.com/debian/ stable main
|
|
|
|
key_url: https://dl.yarnpkg.com/debian/pubkey.gpg
|
2017-04-25 11:14:34 -07:00
|
|
|
packages:
|
2018-02-09 06:29:48 -08:00
|
|
|
- ffmpeg
|
|
|
|
- libicu-dev
|
|
|
|
- libprotobuf-dev
|
|
|
|
- protobuf-compiler
|
|
|
|
- yarn
|
2016-03-18 15:31:07 -07:00
|
|
|
|
2016-03-18 15:23:19 -07:00
|
|
|
rvm:
|
2017-09-17 19:55:57 -07:00
|
|
|
- 2.4.2
|
2018-01-19 11:53:30 -08:00
|
|
|
- 2.5.0
|
2016-03-18 15:23:19 -07:00
|
|
|
|
2016-03-18 15:31:07 -07:00
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
2016-09-03 05:02:24 -07:00
|
|
|
install:
|
2017-04-14 17:05:41 -07:00
|
|
|
- nvm install
|
2017-05-05 09:52:15 -07:00
|
|
|
- bundle install --path=vendor/bundle --without development production --retry=3 --jobs=16
|
2016-10-15 04:48:38 -07:00
|
|
|
- yarn install
|
2016-09-03 05:02:24 -07:00
|
|
|
|
2016-03-18 15:31:07 -07:00
|
|
|
before_script:
|
2018-01-19 11:53:30 -08:00
|
|
|
- ./bin/rails parallel:create parallel:load_schema parallel:prepare assets:precompile
|
2016-03-18 15:31:07 -07:00
|
|
|
|
2016-10-15 07:43:52 -07:00
|
|
|
script:
|
2017-05-29 08:49:54 -07:00
|
|
|
- travis_retry bundle exec parallel_test spec/ --group-by filesize --type rspec
|
2017-10-16 00:33:08 -07:00
|
|
|
- yarn test
|
2017-10-18 02:57:02 -07:00
|
|
|
- bundle exec i18n-tasks check-normalized && bundle exec i18n-tasks unused
|