-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (45 loc) · 1010 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
dist: xenial
language: ruby
cache: bundler
before_install:
# rubygems 2.7.8 and greater include bundler, leave 2.6.0 untouched
- |
r_eng="$(ruby -e 'STDOUT.write RUBY_ENGINE')";
rv="$(ruby -e 'STDOUT.write RUBY_VERSION')";
if [ "$r_eng" == "ruby" ]; then
if [ "$rv" \< "2.3" ]; then gem update --system 2.7.9 --no-document
elif [ "$rv" \< "2.6" ]; then gem update --system --no-document --conservative
fi
fi
- ruby -v && gem --version && bundle version
before_script:
- bundle exec rake compile
script:
- bundle exec rake
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.5
- 2.6.2
- ruby-head
matrix:
fast_finish: true
include:
- rvm: ruby-head
env: RUBYOPT="--jit"
- rvm: 2.3.8
os: osx
- rvm: 2.5.5
os: osx
- rvm: jruby-9.2.6.0
- rvm: jruby-head
allow_failures:
- rvm: ruby-head
- rvm: ruby-head
env: RUBYOPT="--jit"
- rvm: jruby-9.2.6.0
- rvm: jruby-head
env:
global:
- TESTOPTS="-v"