discourse/.travis.yml

60 lines
1.6 KiB
YAML
Raw Normal View History

2013-02-08 03:43:07 +08:00
language: ruby
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GC_MALLOC_LIMIT=50000000
matrix:
2015-07-17 16:23:43 +08:00
- "RAILS_MASTER=0"
- "RAILS_MASTER=1"
addons:
2016-11-15 15:30:38 +08:00
postgresql: 9.5
apt:
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
matrix:
allow_failures:
- env: "RAILS_MASTER=1"
- rvm: rbx-2
fast_finish: true
2013-02-08 03:43:07 +08:00
rvm:
2017-03-02 16:57:19 +08:00
- 2.3.3
services:
- redis-server
2016-05-23 10:04:44 +08:00
sudo: required
2016-05-23 09:58:20 +08:00
dist: trusty
cache:
directories:
- vendor/bundle
before_install:
- gem install bundler
- git clone --depth=1 https://github.com/discourse/discourse-backup-uploads-to-s3.git plugins/discourse-backup-uploads-to-s3
2016-08-19 16:54:33 +08:00
- git clone --depth=1 https://github.com/discourse/discourse-spoiler-alert.git plugins/discourse-spoiler-alert
- git clone --depth=1 https://github.com/discourse/discourse-cakeday.git plugins/discourse-cakeday
2016-12-30 14:17:36 +08:00
- git clone --depth=1 https://github.com/discourse/discourse-canned-replies.git plugins/discourse-canned-replies
2016-04-08 15:08:48 +08:00
- npm i -g eslint babel-eslint
- eslint app/assets/javascripts
- eslint --ext .es6 app/assets/javascripts
- eslint --ext .es6 test/javascripts
2016-06-14 16:11:45 +08:00
- eslint --ext .es6 plugins/**/assets/javascripts
- eslint test/javascripts
2013-02-08 03:43:07 +08:00
before_script:
- bundle exec rake db:create db:migrate
2015-04-29 10:42:37 +08:00
install:
- bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails seed-fu; fi"
2015-04-29 10:42:37 +08:00
- bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi"
2016-11-30 16:41:12 +08:00
script: "bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test['200000']"