discourse/.travis.yml

85 lines
2.6 KiB
YAML
Raw Normal View History

2013-02-07 14:43:07 -05:00
language: ruby
branches:
only:
- master
2018-05-23 22:48:51 -04:00
- beta
- stable
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GLOBAL_METHOD_CACHE_SIZE=131072
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"
addons:
chrome: stable
postgresql: 9.6
apt:
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
matrix:
fast_finish: true
2013-02-07 14:43:07 -05:00
rvm:
- 2.5.1
- 2.4.4
services:
- redis-server
2016-05-22 22:04:44 -04:00
sudo: required
2016-05-22 21:58:20 -04:00
dist: trusty
cache:
2017-06-06 21:57:48 -04:00
yarn: true
directories:
- vendor/bundle
before_install:
2017-08-18 00:23:29 -04: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 04:54:33 -04: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 01:17:36 -05: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-11-30 22:20:56 -05: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
- export PATH=$HOME/.yarn/bin:$PATH
2015-04-28 22:42:37 -04: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 [ '$RUN_LINT' == '1' ]; then yarn global add eslint babel-eslint > /dev/null; fi"
- bash -c "if [ '$QUNIT_RUN' == '1' ]; then yarn install --dev > /dev/null; fi"
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'] && \
bundle exec rake plugin:qunit
2017-08-18 00:23:29 -04:00
else
bundle exec rspec && bundle exec rake plugin:spec
fi
fi
"