forked from shin1ohno/event_cal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (33 loc) · 823 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
32
33
34
35
36
37
38
language: ruby
bundler_args: --binstubs=./bundler_stubs
rvm:
- "2.0"
- "1.9.2"
- "1.9.3"
- "rbx-19mode"
- "ruby-head"
env:
- "SKIP_JASMINE=true"
- "ALL_IN"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- 'cd sample/app_3.2.13 && RAILS_ENV=test bundle exec rake db:create && cd ../../'
- 'cd sample/app_3.2.13 && RAILS_ENV=test bundle exec rake db:migrate --trace && cd ../../'
- 'cd sample/app_3.2.13 && bundle exec rake db:test:prepare && cd ../../'
- 'bundle exec rake'
matrix:
exclude:
- rvm: "rbx-19mode"
env: "SKIP_JASMINE=true"
- rvm: "2.0"
env: "ALL_IN"
- rvm: "1.9.2"
env: "ALL_IN"
- rvm: "1.9.3"
env: "ALL_IN"
- rvm: "ruby-head"
env: "SKIP_JASMINE=true"
allow_failures:
- rvm: "ruby-head"