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-08-18 00:23:29 -04:00
|
|
|
- "RAILS_MASTER=0 QUNIT_RUN=0 RUN_LINT=0"
|
|
|
|
- "RAILS_MASTER=0 QUNIT_RUN=1 RUN_LINT=0"
|
|
|
|
- "RAILS_MASTER=0 QUNIT_RUN=0 RUN_LINT=1"
|
2014-10-28 18:48:57 -04:00
|
|
|
|
2015-03-31 12:58:56 -04:00
|
|
|
addons:
|
2017-12-14 21:15:04 -05:00
|
|
|
chrome: stable
|
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-12-25 21:05:45 -05:00
|
|
|
- 2.5.0
|
2017-10-08 23:27:13 -04:00
|
|
|
- 2.4.2
|
|
|
|
- 2.3.4
|
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:
|
2017-08-18 00:23:29 -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-09-03 22:47:25 -04:00
|
|
|
- git clone --depth=1 https://github.com/discourse/discourse-chat-integration.git plugins/discourse-chat-integration
|
2017-11-30 22:20:56 -05:00
|
|
|
- git clone --depth=1 https://github.com/discourse/discourse-assign.git plugins/discourse-assign
|
2017-12-21 02:46:57 -05:00
|
|
|
- git clone --depth=1 https://github.com/discourse/discourse-patreon.git plugins/discourse-patreon
|
2018-04-22 21:26:33 -04:00
|
|
|
- git clone --depth=1 https://github.com/discourse/discourse-staff-notes.git plugins/discourse-staff-notes
|
2017-12-13 23:45:55 -05:00
|
|
|
- export PATH=$HOME/.yarn/bin:$PATH
|
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"
|
2017-12-13 23:45:55 -05:00
|
|
|
- bash -c "if [ '$RUN_LINT' == '1' ]; then yarn global add eslint babel-eslint; fi"
|
2017-12-14 21:15:04 -05:00
|
|
|
- bash -c "if [ '$QUNIT_RUN' == '1' ]; then yarn install --dev; fi"
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2017-05-15 13:25:55 -04:00
|
|
|
script:
|
2017-08-18 00:23:29 -04:00
|
|
|
- |
|
|
|
|
bash -c "
|
|
|
|
if [ '$RUN_LINT' == '1' ]; then
|
|
|
|
bundle exec rubocop --parallel && \
|
|
|
|
eslint --ext .es6 app/assets/javascripts && \
|
|
|
|
eslint --ext .es6 test/javascripts && \
|
|
|
|
eslint --ext .es6 plugins/**/assets/javascripts && \
|
|
|
|
eslint --ext .es6 plugins/**/test/javascripts && \
|
|
|
|
eslint app/assets/javascripts test/javascripts
|
|
|
|
else
|
|
|
|
bundle exec rake db:create db:migrate
|
|
|
|
|
|
|
|
if [ '$QUNIT_RUN' == '1' ]; then
|
2018-03-19 22:24:44 -04:00
|
|
|
bundle exec rake qunit:test['500000'] && \
|
2018-03-08 21:37:00 -05:00
|
|
|
bundle exec rake plugin:qunit
|
2017-08-18 00:23:29 -04:00
|
|
|
else
|
|
|
|
bundle exec rspec && bundle exec rake plugin:spec
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
"
|