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