forked from spree/spree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (30 loc) · 840 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
before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
script:
- "export DISPLAY=:99.0"
- "alias set_gemfile='export BUNDLE_GEMFILE=\"`pwd`/Gemfile\"'"
- "cd api; set_gemfile; bundle install --quiet; bundle exec rspec spec"
- "cd ../auth; set_gemfile; bundle install --quiet; bundle exec rspec spec"
- "cd ../core; set_gemfile; bundle install --quiet; bundle exec rspec spec"
- "cd ../dash; set_gemfile; bundle install --quiet; bundle exec rspec spec"
- "cd ../promo; set_gemfile; bundle install --quiet; bundle exec rspec spec"
notifications:
email:
- ryan@spreecommerce.com
irc:
use_notice: true
skip_join: true
channels:
- "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- master
rvm:
- 1.8.7
- 1.9.3