discourse/.travis.yml

66 lines
1.9 KiB
YAML
Raw Normal View History

2013-02-07 14:43:07 -05:00
language: ruby
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GC_MALLOC_LIMIT=50000000
matrix:
- "RAILS_MASTER=0 QUNIT_RUN=0"
- "RAILS_MASTER=1 QUNIT_RUN=0"
- "RAILS_MASTER=0 QUNIT_RUN=1"
- "RAILS_MASTER=1 QUNIT_RUN=1"
addons:
2016-11-15 02:30:38 -05:00
postgresql: 9.5
apt:
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
matrix:
allow_failures:
- env: "RAILS_MASTER=1 QUNIT_RUN=0"
- env: "RAILS_MASTER=1 QUNIT_RUN=1"
fast_finish: true
2013-02-07 14:43:07 -05:00
rvm:
2017-04-15 00:11:02 -04:00
- 2.4.1
2017-03-02 03:57:19 -05:00
- 2.3.3
services:
- redis-server
2016-05-22 22:04:44 -04:00
sudo: required
2016-05-22 21:58:20 -04:00
dist: trusty
cache:
2017-06-06 21:57:48 -04:00
yarn: true
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 04:54:33 -04: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 01:17:36 -05:00
- git clone --depth=1 https://github.com/discourse/discourse-canned-replies.git plugins/discourse-canned-replies
- git clone --depth=1 https://github.com/discourse/discourse-slack-official.git plugins/discourse-slack-official
2017-06-12 02:20:17 -04:00
- yarn global add eslint@3 babel-eslint
- eslint app/assets/javascripts
- eslint --ext .es6 app/assets/javascripts
- eslint --ext .es6 test/javascripts
2016-06-14 04:11:45 -04:00
- eslint --ext .es6 plugins/**/assets/javascripts
- eslint test/javascripts
2013-02-07 14:43:07 -05:00
before_script:
- bundle exec rake db:create db:migrate
2015-04-28 22:42:37 -04:00
install:
- bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails seed-fu; fi"
2015-04-28 22:42:37 -04:00
- bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi"
2017-05-15 13:25:55 -04:00
script:
- bash -c "if [ '$QUNIT_RUN' == '0' ]; then bundle exec rspec && bundle exec rake plugin:spec; else bundle exec rake qunit:test['200000']; fi"