Skip to content

Commit e81d4db

Browse files
committed
Added rubies 3.3 and 3.4 to the testing matrix
1 parent 553e8ba commit e81d4db

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

.travis.yml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ language: ruby
22
matrix:
33
fast_finish: true
44
include:
5+
- os: linux
6+
dist: xenial
7+
rvm: 3.4-preview2
8+
- os: linux
9+
dist: xenial
10+
rvm: 3.3
511
- os: linux
612
dist: xenial
713
rvm: 3.2
@@ -32,6 +38,12 @@ matrix:
3238
- os: linux
3339
dist: xenial
3440
rvm: 2.1
41+
- os: linux
42+
dist: bionic
43+
rvm: 3.4-preview2
44+
- os: linux
45+
dist: bionic
46+
rvm: 3.3
3547
- os: linux
3648
dist: bionic
3749
rvm: 3.2
@@ -56,6 +68,12 @@ matrix:
5668
- os: linux
5769
dist: bionic
5870
rvm: 2.3
71+
- os: linux
72+
dist: focal
73+
rvm: 3.4-preview2
74+
- os: linux
75+
dist: focal
76+
rvm: 3.3
5977
- os: linux
6078
dist: focal
6179
rvm: 3.2
@@ -77,6 +95,12 @@ matrix:
7795
- os: linux
7896
dist: focal
7997
rvm: 2.4
98+
- os: osx
99+
osx_image: xcode11.3
100+
rvm: 3.4-preview2
101+
- os: osx
102+
osx_image: xcode11.3
103+
rvm: 3.3
80104
- os: osx
81105
osx_image: xcode11.3
82106
rvm: 3.2
@@ -98,6 +122,12 @@ matrix:
98122
- os: osx
99123
osx_image: xcode11.3
100124
rvm: 2.4
125+
- os: osx
126+
osx_image: xcode12.2
127+
rvm: 3.4-preview2
128+
- os: osx
129+
osx_image: xcode12.2
130+
rvm: 3.3
101131
- os: osx
102132
osx_image: xcode12.2
103133
rvm: 3.2
@@ -122,5 +152,3 @@ matrix:
122152
- os: osx
123153
osx_image: xcode12.2
124154
rvm: ruby-head
125-
allow_failures:
126-
- rvm: ruby-head

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ task :gen_travis do
1818
versions.each { |version| self << ['linux', 'dist', distro, version] }
1919
end
2020

21-
since_24 = %w[2.4 2.5 2.6 2.7 3.0 3.1 3.2].reverse
21+
since_24 = %w[2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4-preview2].reverse
2222
since_23 = [*since_24, '2.3']
2323
since_22 = [*since_23, '2.2']
2424
since_21 = [*since_22, '2.1']

0 commit comments

Comments
 (0)