Skip to content

Commit 1bc69ac

Browse files
committed
Updated .travis.yml to add Windows testing and more rubies
1 parent bbe628c commit 1bc69ac

File tree

1 file changed

+31
-10
lines changed

1 file changed

+31
-10
lines changed

.travis.yml

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
language: ruby
2-
rvm:
3-
- 2.3
4-
- 2.4
5-
- 2.5
6-
- 2.6
7-
- ruby-head
8-
- jruby
9-
10-
matrix:
2+
jobs:
3+
include:
4+
- rvm: 2.3
5+
- rvm: 2.4
6+
- rvm: 2.5
7+
- rvm: 2.6
8+
- rvm: 2.7
9+
- rvm: jruby-9.1.17.0
10+
- rvm: jruby-9.2.13.0
11+
- rvm: ruby-head
12+
- rvm: jruby
13+
- name: Ruby: Windows
14+
os: windows
15+
language: shell
16+
script:
17+
- bundle
18+
- bundle exec rake
19+
- name: JRuby: Windows
20+
os: windows
21+
language: shell
22+
script:
23+
- choco install jdk
24+
- curl -L -o jruby-dist-9.2.13.0-bin.zip https://repo1.maven.org/maven2/org/jruby/jruby-dist/9.2.13.0/jruby-dist-9.2.13.0-bin.zip
25+
- unzip jruby-dist-9.2.13.0-bin.zip
26+
- export PATH="$(pwd)/jruby-9.2.13.0/bin:$PATH"
27+
- which jruby
28+
- ls "$(pwd)/jruby-9.2.13.0/bin"
29+
- jruby --version
30+
- jruby -S bundle
31+
- jruby -S bundle exec rake
1132
allow_failures:
1233
- rvm: jruby
1334
- rvm: ruby-head
14-
fast_finish: true
35+
fast_finish: true

0 commit comments

Comments
 (0)