Reorder Rubies in Travis build CI

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.
This commit is contained in:
Sebastian Skałacki 2019-03-24 12:17:00 +01:00 коммит произвёл Daiki Ueno
Родитель ef821c30d4
Коммит e84f42e2e8
1 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -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