forked from railsadminteam/rails_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (31 loc) · 905 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
bundler_args: "--without development"
rvm:
- jruby-19mode
- 1.9.3
- 2.0.0
env:
- "CI_ORM=mongoid"
- "CI_ORM=active_record CI_DB_ADAPTER=sqlite3"
- "CI_ORM=active_record CI_DB_ADAPTER=mysql2"
- "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres"
language: ruby
matrix:
exclude:
- rvm: jruby-19mode
env: "CI_ORM=active_record CI_DB_ADAPTER=mysql2"
- rvm: jruby-19mode
env: "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres"
- rvm: 1.9.3
env: "CI_ORM=active_record CI_DB_ADAPTER=mysql2"
- rvm: 1.9.3
env: "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres"
notifications:
irc: "irc.freenode.org#railsadmin"
before_script:
- cd spec/dummy_app
- bundle install
- bundle exec rake rails_admin:prepare_ci_env
- bundle exec rake db:create db:migrate
- cd ../../
services:
- mongodb