summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 43bef8133bf4cc6d8d635d475e6f143de6d683bf (plain)
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
cache: bundler
before_install:
  - |
    export RVM_CURRENT=`rvm current|cut -c6-8`
    if [ "${RVM_CURRENT}" = "2.0" ] || \
       [ "${RVM_CURRENT}" = "2.1" ] || \
       [ "${RVM_CURRENT}" = "2.2" ]; then
      gem install bundler -v '< 2'
    fi

rvm:
  - 2.0.0
  - 2.1
  - 2.2
  - 2.3.4
  - 2.4.10
  - 2.5.9
  - 2.6.7
  - 2.7.3
  - 3.0.1
  - jruby-9.2.17.0
  - jruby-head
  - ruby-head
  - truffleruby-head
jdk:
  - openjdk8
notifications:
  email:
    on_success: change
    on_failure: always