discourse/.travis.yml

Failed to ignore revisions in .git-blame-ignore-revs.

87 lines
2.7 KiB
YAML
Raw Normal View History

2013-02-07 14:43:07 -05:00
language: ruby
git:
depth: false
branches:
only:
- master
2018-05-23 22:48:51 -04:00
- beta
- stable
env:
global:
2018-06-25 19:48:57 -04:00
- TRAVIS_NODE_VERSION="10"
- 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:
2018-05-30 01:01:12 -04:00
update: true
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
matrix:
fast_finish: true
2013-02-07 14:43:07 -05:00
rvm:
2019-04-29 01:59:34 -04:00
- 2.6.3
services:
- redis-server
2016-05-22 22:04:44 -04:00
sudo: required
dist: xenial
cache:
2017-06-06 21:57:48 -04:00
yarn: true
directories:
- vendor/bundle
before_install:
2019-01-02 12:09:02 -05:00
- wget -qO- https://raw.githubusercontent.com/discourse/discourse_docker/master/image/base/install-pngquant | sudo sh
2018-06-26 03:56:44 -04:00
- nvm install node
- node --version
- gem install bundler -v 1.17.3
- 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-user-notes.git plugins/discourse-user-notes
- git clone --depth=1 https://github.com/discourse/discourse-group-tracker
- 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; fi"
- bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi"
- bash -c "if [ '$QUNIT_RUN' == '1' ] || [ '$RUN_LINT' == '1' ]; then yarn install --dev; fi"
- bash -c "if [ '$RUN_LINT' != '1' ]; then bundle exec rake db:create && LOAD_PLUGINS=1 bundle exec rake db:migrate; 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
npx lefthook run lints
2017-08-18 00:23:29 -04:00
else
if [ '$QUNIT_RUN' == '1' ]; then
bundle exec rake qunit:test['1200000'] && \
bundle exec rake qunit:test['1200000','/wizard/qunit'] && \
bundle exec rake plugin:qunit
2017-08-18 00:23:29 -04:00
else
bundle exec rspec && bundle exec rake plugin:spec
fi
fi
"