41 lines
656 B
YAML
Raw Normal View History

2017-02-02 14:57:57 +11:00
language: ruby
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
dist: trusty
2017-02-14 14:40:36 +11:00
cache: bundler
addons:
postgresql: 9.5
2017-02-15 11:25:32 +11:00
apt:
packages:
- gifsicle
- jpegoptim
- optipng
- jhead
rvm:
- 2.3.1
services:
- redis-server
before_install:
- git clone https://github.com/discourse/discourse.git discourse
- cd discourse
install:
- touch config/stripe.yml
2017-02-24 13:35:18 +11:00
- ln -s ../discourse-donations plugins/discourse-payments
before_script:
- gem install bundler
- bundle install
- bundle exec rake db:create db:migrate
script:
2017-02-15 10:59:58 +11:00
- "bundle exec rake plugin:spec[discourse-payments] && bundle exec rake qunit:test['200000']"