Skip to content

Commit

Permalink
Don't run travis matrix entries (at least try to)
Browse files Browse the repository at this point in the history
  • Loading branch information
snusnu committed Jul 23, 2013
1 parent 6b8ef49 commit d52a718
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@ language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
- rvm: jruby-19mode
- rvm: jruby-head
include:
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: ruby-head
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: rbx-19mode
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
- rvm: jruby-19mode
- rvm: jruby-head

2 comments on commit d52a718

@snusnu
Copy link
Owner Author

@snusnu snusnu commented on d52a718 Jul 23, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Obviously this is not about NOT running travis matrix entries, but about not running them twice ...

@dkubb
Copy link

@dkubb dkubb commented on d52a718 Jul 23, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You don't need to have the 1.9.3, 2.0.0 and ruby-head in the matrix/include section. If they're in the rvm section they can still be run.

The problem is the duplication of the jruby entries in the rvm and matrix/include sections.

Please sign in to comment.