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