forked from ruby-concurrency/concurrent-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
53 lines (41 loc) · 635 Bytes
/
.travis.yml
File metadata and controls
53 lines (41 loc) · 635 Bytes
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
language: ruby
rvm:
# start with the latest
- 2.5.1
- jruby-9.1.17.0
# older versions
- 2.4.4
- 2.3.7
- 2.2.10
- 2.1.10
- 2.0.0
- 1.9.3
- jruby-9.0.5.0
- jruby-1.7.27
- ruby-head
- jruby-head
- rbx-3
jdk:
- oraclejdk8
sudo: false
branches:
only:
- master
matrix:
fast_finish: true
include:
- rvm: 2.3.7
jdk: oraclejdk8
env: COVERAGE=1
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: 1.9.3
- rvm: rbx-3
env:
global:
- JAVA_OPTS=-Xmx1024m
- RUBYOPT=-w
before_install:
- "echo JAVA_OPTS: $JAVA_OPTS"
script: bundle exec rake ci