mastodon/.travis.yml

43 lines
728 B
YAML
Raw Normal View History

language: ruby
cache: bundler
2016-10-15 17:44:43 +02:00
notifications:
email: false
env:
2016-10-15 17:44:43 +02:00
matrix:
- TRAVIS_NODE_VERSION="4"
global:
- LOCAL_DOMAIN=cb6e6126.ngrok.io
- LOCAL_HTTPS=true
- RAILS_ENV=test
- CXX=g++-4.8
addons:
postgresql: 9.4
rvm:
2016-11-11 23:37:39 +01:00
- 2.3.1
services:
- redis-server
2016-08-24 19:06:54 +02:00
bundler_args: --without development production --retry=3 --jobs=3
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
2016-09-03 14:02:24 +02:00
install:
2016-10-15 17:44:43 +02:00
- nvm install $TRAVIS_NODE_VERSION
2016-10-08 00:48:36 +02:00
- npm install -g npm@3
- npm install -g yarn
2016-09-03 14:20:59 +02:00
- bundle install
- yarn install
2016-09-03 14:02:24 +02:00
before_script:
2016-09-03 14:20:59 +02:00
- bundle exec rails db:create db:migrate
script:
- bundle exec rspec
- npm test