discourse/.travis.yml

66 lines
1.9 KiB
YAML
Raw Normal View History

2013-02-08 03:43:07 +08:00
language: ruby
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GC_MALLOC_LIMIT=50000000
matrix:
- "RAILS_MASTER=0 QUNIT_RUN=0"
- "RAILS_MASTER=1 QUNIT_RUN=0"
- "RAILS_MASTER=0 QUNIT_RUN=1"
- "RAILS_MASTER=1 QUNIT_RUN=1"
addons:
2016-11-15 15:30:38 +08:00
postgresql: 9.5
apt:
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
matrix:
allow_failures:
- env: "RAILS_MASTER=1 QUNIT_RUN=0"
- env: "RAILS_MASTER=1 QUNIT_RUN=1"
fast_finish: true
2013-02-08 03:43:07 +08:00
rvm:
2017-04-15 12:11:02 +08:00
- 2.4.1
2017-03-02 16:57:19 +08:00
- 2.3.3
services:
- redis-server
2016-05-23 10:04:44 +08:00
sudo: required
2016-05-23 09:58:20 +08:00
dist: trusty
cache:
2017-06-07 09:57:48 +08:00
yarn: true
directories:
- vendor/bundle
before_install:
- 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-slack-official.git plugins/discourse-slack-official
2017-06-23 08:06:21 +08:00
- yarn global add eslint babel-eslint
- 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
- eslint test/javascripts
2013-02-08 03:43:07 +08:00
before_script:
- bundle exec rake db:create db:migrate
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; 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-05-16 01:25:55 +08:00
script:
- bash -c "if [ '$QUNIT_RUN' == '0' ]; then bundle exec rspec && bundle exec rake plugin:spec; else bundle exec rake qunit:test['200000']; fi"