discourse/.travis.yml

94 lines
3.0 KiB
YAML
Raw Normal View History

2013-02-08 03:43:07 +08:00
language: ruby
branches:
only:
- master
2018-05-24 10:48:51 +08:00
- beta
- stable
env:
global:
2018-06-26 07:48:57 +08:00
- TRAVIS_NODE_VERSION="10"
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GLOBAL_METHOD_CACHE_SIZE=131072
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"
addons:
chrome: stable
postgresql: 9.6
apt:
2018-05-30 13:01:12 +08:00
update: true
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
matrix:
fast_finish: true
2018-08-01 16:46:57 +08:00
exclude:
- rvm: 2.4.4
env: "RAILS_MASTER=0 QUNIT_RUN=0 RUN_LINT=1"
2013-02-08 03:43:07 +08:00
rvm:
- 2.5.1
- 2.4.4
services:
- redis-server
2016-05-23 10:04:44 +08:00
sudo: required
2018-06-26 07:48:57 +08:00
dist: trusty
cache:
2018-05-30 12:20:31 +08:00
apt: true
2017-06-07 09:57:48 +08:00
yarn: true
directories:
- vendor/bundle
before_install:
2018-06-26 15:56:44 +08:00
- nvm install node
- node --version
2017-08-18 12:23:29 +08:00
- 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 16:54:33 +08: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 14:17:36 +08: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-chat-integration.git plugins/discourse-chat-integration
2017-12-01 11:20:56 +08:00
- git clone --depth=1 https://github.com/discourse/discourse-assign.git plugins/discourse-assign
- git clone --depth=1 https://github.com/discourse/discourse-patreon.git plugins/discourse-patreon
- git clone --depth=1 https://github.com/discourse/discourse-staff-notes.git plugins/discourse-staff-notes
- git clone --depth=1 https://github.com/discourse/discourse-group-tracker
- export PATH=$HOME/.yarn/bin:$PATH
2015-04-29 10:42:37 +08:00
install:
- bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails seed-fu > /dev/null; fi"
- bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3 > /dev/null; fi"
- bash -c "if [ '$QUNIT_RUN' == '1' ] || [ '$RUN_LINT' == '1' ]; then yarn install --dev > /dev/null; fi"
- bash -c "if [ '$RUN_LINT' != '1' ]; then LOAD_PLUGINS=1 bundle exec rake db:create db:migrate > /dev/null; fi"
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 && \
2018-07-24 22:12:15 +08:00
bundle exec danger && \
yarn eslint --ext .es6 app/assets/javascripts && \
yarn eslint --ext .es6 test/javascripts && \
yarn eslint --ext .es6 plugins/**/assets/javascripts && \
yarn eslint --ext .es6 plugins/**/test/javascripts && \
yarn eslint app/assets/javascripts test/javascripts
2017-08-18 12:23:29 +08:00
else
if [ '$QUNIT_RUN' == '1' ]; then
2018-03-20 10:24:44 +08:00
bundle exec rake qunit:test['500000'] && \
2018-10-09 16:10:49 +08:00
bundle exec rake qunit:test['500000','/wizard/qunit'] && \
bundle exec rake plugin:qunit
2017-08-18 12:23:29 +08:00
else
bundle exec rspec && bundle exec rake plugin:spec
fi
fi
"