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:
|
2015-07-17 16:23:43 +08:00
|
|
|
- "RAILS_MASTER=0"
|
2014-10-29 06:48:57 +08:00
|
|
|
- "RAILS_MASTER=1"
|
|
|
|
|
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:
|
|
|
|
allow_failures:
|
2015-04-25 04:28:27 +08:00
|
|
|
- env: "RAILS_MASTER=1"
|
2015-02-23 03:51:40 +08:00
|
|
|
- rvm: rbx-2
|
2014-10-29 06:48:57 +08:00
|
|
|
fast_finish: true
|
|
|
|
|
2013-02-08 03:43:07 +08:00
|
|
|
rvm:
|
2017-03-02 16:57:19 +08:00
|
|
|
- 2.3.3
|
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:
|
|
|
|
directories:
|
|
|
|
- vendor/bundle
|
2014-11-07 09:03:08 +08:00
|
|
|
|
2014-03-08 14:14:29 +08:00
|
|
|
before_install:
|
2015-08-17 01:05:57 +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
|
2016-04-08 15:08:48 +08:00
|
|
|
- npm i -g eslint babel-eslint
|
2015-08-14 03:22:33 +08:00
|
|
|
- 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
|
2015-08-14 03:22:33 +08:00
|
|
|
- eslint test/javascripts
|
2014-11-07 09:03:08 +08:00
|
|
|
|
2013-02-08 03:43:07 +08:00
|
|
|
before_script:
|
2015-04-25 04:28:27 +08:00
|
|
|
- bundle exec rake db:create db:migrate
|
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"
|
2014-11-07 09:03:08 +08:00
|
|
|
|
2016-11-30 16:41:12 +08:00
|
|
|
script: "bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test['200000']"
|