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