Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use latest minor versions of Ruby in Travis-CI #218

Merged
merged 7 commits into from
Aug 26, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove jruby-head, set jdk8 versions
We must exclude jdk variations from the CRuby jobs to prevent running
extra jobs we don't need.
  • Loading branch information
gschneider-r7 committed Aug 26, 2016
commit 993c6a1d27f3b958186fd505b8bfc709eb4a4fe3
26 changes: 25 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,31 @@ rvm:
- 2.3.1
- ruby-head
- jruby-9.0.5.0
- jruby-head
jdk:
- oraclejdk8
- openjdk8
matrix:
exclude:
- rvm: 2.1.5
jdk: openjdk8
- rvm: 2.1.5
jdk: oraclejdk8
- rvm: 2.1.9
jdk: openjdk8
- rvm: 2.1.9
jdk: oraclejdk8
- rvm: 2.2.5
jdk: openjdk8
- rvm: 2.2.5
jdk: oraclejdk8
- rvm: 2.3.1
jdk: openjdk8
- rvm: 2.3.1
jdk: oraclejdk8
- rvm: ruby-head
jdk: openjdk8
- rvm: ruby-head
jdk: oraclejdk8
script: bundle exec rspec --color --format=documentation
addons:
code_climate:
Expand Down