2013-02-07 14:43:07 -05:00
|
|
|
language: ruby
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2014-10-28 18:48:57 -04:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- DISCOURSE_HOSTNAME=www.example.com
|
|
|
|
- RUBY_GC_MALLOC_LIMIT=50000000
|
|
|
|
matrix:
|
2017-04-20 09:00:44 -04:00
|
|
|
- "RAILS_MASTER=0 QUNIT_RUN=0"
|
|
|
|
- "RAILS_MASTER=0 QUNIT_RUN=1"
|
2014-10-28 18:48:57 -04:00
|
|
|
|
2015-03-31 12:58:56 -04:00
|
|
|
addons:
|
2016-11-15 02:30:38 -05:00
|
|
|
postgresql: 9.5
|
2015-08-14 04:52:33 -04:00
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- gifsicle
|
|
|
|
- jpegoptim
|
|
|
|
- optipng
|
|
|
|
- jhead
|
2015-03-31 12:58:56 -04:00
|
|
|
|
2014-10-28 18:48:57 -04:00
|
|
|
matrix:
|
|
|
|
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
|
2014-11-06 20:03:08 -05:00
|
|
|
|
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
2016-05-22 22:04:44 -04:00
|
|
|
sudo: required
|
2016-05-22 21:58:20 -04:00
|
|
|
dist: trusty
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2015-08-16 13:05:57 -04:00
|
|
|
cache:
|
2017-06-06 21:57:48 -04:00
|
|
|
yarn: true
|
2015-08-16 13:05:57 -04:00
|
|
|
directories:
|
|
|
|
- vendor/bundle
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2014-03-08 01:14:29 -05:00
|
|
|
before_install:
|
2015-08-16 13:05:57 -04:00
|
|
|
- gem install bundler
|
2016-08-18 07:15:39 -04:00
|
|
|
- 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
|
2016-11-23 01:23:12 -05:00
|
|
|
- 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
|
2017-04-05 04:43:47 -04:00
|
|
|
- git clone --depth=1 https://github.com/discourse/discourse-slack-official.git plugins/discourse-slack-official
|
2017-06-22 20:06:21 -04:00
|
|
|
- yarn global add eslint babel-eslint
|
2015-08-13 15:22:33 -04:00
|
|
|
- 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
|
2015-08-13 15:22:33 -04:00
|
|
|
- eslint test/javascripts
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2013-02-07 14:43:07 -05:00
|
|
|
before_script:
|
2017-07-17 02:37:32 -04:00
|
|
|
- bundle exec rake db:create db:migrate
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2015-04-28 22:42:37 -04:00
|
|
|
install:
|
2016-12-24 10:39:02 -05:00
|
|
|
- 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"
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2017-05-15 13:25:55 -04:00
|
|
|
script:
|
2017-07-24 05:44:33 -04:00
|
|
|
- bash -c "if [ '$QUNIT_RUN' == '0' ]; then bundle exec rspec && bundle exec rake plugin:spec; else LOAD_PLUGINS=1 bundle exec rake qunit:test['300000']; fi"
|