2016-03-18 23:23:19 +01:00
|
|
|
language: ruby
|
2017-04-26 22:32:23 +02:00
|
|
|
cache:
|
|
|
|
bundler: true
|
|
|
|
yarn: true
|
|
|
|
directories:
|
|
|
|
- node_modules
|
2017-04-19 23:21:00 +02:00
|
|
|
dist: trusty
|
2017-04-25 20:14:34 +02:00
|
|
|
sudo: false
|
2016-03-18 23:23:19 +01:00
|
|
|
|
2016-10-15 17:44:43 +02:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
2016-03-18 23:31:07 +01:00
|
|
|
env:
|
|
|
|
global:
|
2016-03-21 08:41:00 +01:00
|
|
|
- LOCAL_DOMAIN=cb6e6126.ngrok.io
|
|
|
|
- LOCAL_HTTPS=true
|
|
|
|
- RAILS_ENV=test
|
2017-02-05 19:18:11 +01:00
|
|
|
- CXX=g++-4.8
|
2016-03-18 23:31:07 +01:00
|
|
|
addons:
|
|
|
|
postgresql: 9.4
|
2017-04-25 20:14:34 +02:00
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- trusty-media
|
|
|
|
packages:
|
|
|
|
- g++-4.8
|
|
|
|
- ffmpeg
|
2016-03-18 23:31:07 +01:00
|
|
|
|
2016-03-18 23:23:19 +01:00
|
|
|
rvm:
|
2017-04-16 14:57:30 +02:00
|
|
|
- 2.3.4
|
2017-04-10 22:47:41 +02:00
|
|
|
- 2.4.1
|
2016-03-18 23:23:19 +01:00
|
|
|
|
2016-03-18 23:31:07 +01:00
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
2016-08-24 19:06:54 +02:00
|
|
|
bundler_args: --without development production --retry=3 --jobs=3
|
|
|
|
|
2016-09-03 14:02:24 +02:00
|
|
|
install:
|
2017-04-15 02:05:41 +02:00
|
|
|
- nvm install
|
2016-10-15 13:48:38 +02:00
|
|
|
- npm install -g yarn
|
2016-09-03 14:20:59 +02:00
|
|
|
- bundle install
|
2016-10-15 13:48:38 +02:00
|
|
|
- yarn install
|
2016-09-03 14:02:24 +02:00
|
|
|
|
2016-03-18 23:31:07 +01:00
|
|
|
before_script:
|
2016-09-03 14:20:59 +02:00
|
|
|
- bundle exec rails db:create db:migrate
|
2016-03-18 23:31:07 +01:00
|
|
|
|
2016-10-15 16:43:52 +02:00
|
|
|
script:
|
|
|
|
- bundle exec rspec
|
|
|
|
- npm test
|
2017-04-16 19:37:01 +02:00
|
|
|
- i18n-tasks unused
|