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