Skip to content

Commit

Permalink
Reorder Rubies in Travis build CI
Browse files Browse the repository at this point in the history
The first RVM entry is considered the default one.

This change has no impact on current build matrix, however if at some
point following would be added:

    matrix:
      include:
        - ...

Then it runs such additional job with default (first mentioned) Ruby
version unless that job definition specifies Ruby version explicitly.
Therefore, it's generally good when Rubies are listed from latest to
oldest.
  • Loading branch information
skalee authored and ueno committed Mar 24, 2019
1 parent ef821c3 commit e84f42e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
language: ruby

rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1
- 2.0
- 1.9.3

matrix:
allow_failures:
- rvm: 1.9.3
- rvm: 2.0
- rvm: 1.9.3

before_install:
# this is a fix to get rng-tools to work in travis-ci
Expand Down

0 comments on commit e84f42e

Please sign in to comment.