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