forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
53 lines (39 loc) · 791 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
41
42
43
44
45
46
47
48
49
50
51
52
53
---
addons:
apt:
packages:
- google-chrome-stable
branches:
only:
- master
- 1-4-stable
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_script:
- bin/install_chromedriver.sh
- unset _JAVA_OPTIONS
before_install:
- gem update --system # use the very latest Rubygems
- gem install bundler # use the very latest Bundler
- rm "${BUNDLE_GEMFILE}.lock"
script:
- bundle exec rake
- bundle exec rake docs:build
- bundle exec rake lint
rvm:
- jruby-9.1.17.0
- jruby-9.2.0.0
gemfile:
- gemfiles/rails_42.gemfile
- gemfiles/rails_50.gemfile
- gemfiles/rails_51.gemfile
- Gemfile
env:
global:
- JRUBY_OPTS="-J-Xmx1024m --dev --debug"
- COVERAGE=true
matrix:
fast_finish: true