mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-10 14:04:35 -04:00
Merge pull request #2951 from joshk/patch-1
some possible improvements to build times
This commit is contained in:
commit
067f552cd5
1 changed files with 19 additions and 6 deletions
25
.travis.yml
25
.travis.yml
|
@ -1,16 +1,29 @@
|
|||
language: ruby
|
||||
|
||||
rvm:
|
||||
- 2.0.0
|
||||
- 2.1.2
|
||||
- 2.1
|
||||
|
||||
services:
|
||||
- redis-server
|
||||
|
||||
sudo: false
|
||||
|
||||
cache: bundler
|
||||
|
||||
env:
|
||||
global:
|
||||
- DISCOURSE_HOSTNAME=www.example.com
|
||||
- RUBY_GC_MALLOC_LIMIT=50000000
|
||||
|
||||
before_install:
|
||||
- npm i -g jshint
|
||||
- jshint .
|
||||
|
||||
before_script:
|
||||
- psql -c 'create database discourse_test;' -U postgres
|
||||
- export DISCOURSE_HOSTNAME=www.example.com
|
||||
- export RUBY_GC_MALLOC_LIMIT=50000000
|
||||
- bundle exec rake db:migrate
|
||||
bundler_args: --without development
|
||||
|
||||
bundler_args: --without development --deployment
|
||||
|
||||
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|
||||
services:
|
||||
- redis-server
|
||||
|
|
Loading…
Add table
Reference in a new issue