forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (40 loc) · 909 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
39
40
language: ruby
sudo: false
install:
- ./script/travis_cache download_bundle
- gem install bundler # use the very latest Bundler
- bundle install --without development --path=./bundle
- bundle clean # delete now-outdated gems
- ./script/travis_cache download_app
- bundle exec rake setup
- ./script/travis_cache upload
script:
- bundle exec rake test_with_coveralls
rvm:
- 1.9
- 2.3.0
- jruby-9.0.5.0
env:
matrix:
- RAILS=3.2.22
- RAILS=4.2.5
- RAILS=5.0.0
global:
- JRUBY_OPTS="-J-Xmx1024m --debug"
matrix:
fast_finish: true
exclude:
- rvm: 1.9
env: RAILS=5.0.0
allow_failures:
- rvm: jruby-9.0.5.0
env: RAILS=5.0.0
notifications:
irc:
channels:
- irc.freenode.org#activeadmin
on_success: change
on_failure: always
skip_join: true
template:
- "(%{branch}/%{commit} by %{author}): %{message} (%{build_url})"