mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
some possible improvements to build times
- use our new infrastructure based on LXC and EC2 - enable caching for bundler - use schema:load (best practice) - use --deployment (best practice when a Gemfile.lock is around)
This commit is contained in:
parent
9f6a0cb126
commit
970417e328
1 changed files with 19 additions and 7 deletions
26
.travis.yml
26
.travis.yml
|
@ -1,16 +1,28 @@
|
||||||
language: ruby
|
language: ruby
|
||||||
|
|
||||||
rvm:
|
rvm:
|
||||||
- 2.0.0
|
- 2.0.0
|
||||||
- 2.1.2
|
- 2.1
|
||||||
|
|
||||||
|
services:
|
||||||
|
- redis-server
|
||||||
|
|
||||||
|
sudo: false
|
||||||
|
|
||||||
|
cache: bundler
|
||||||
|
|
||||||
|
env:
|
||||||
|
- DISCOURSE_HOSTNAME=www.example.com
|
||||||
|
- RUBY_GC_MALLOC_LIMIT=50000000
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- npm i -g jshint
|
- npm i -g jshint
|
||||||
- jshint .
|
- jshint .
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- psql -c 'create database discourse_test;' -U postgres
|
- psql -c 'create database discourse_test;' -U postgres
|
||||||
- export DISCOURSE_HOSTNAME=www.example.com
|
- bundle exec rake db:schema:load
|
||||||
- export RUBY_GC_MALLOC_LIMIT=50000000
|
|
||||||
- bundle exec rake db:migrate
|
bundler_args: --without development --deployment
|
||||||
bundler_args: --without development
|
|
||||||
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|
||||||
services:
|
|
||||||
- redis-server
|
|
||||||
|
|
Loading…
Reference in a new issue