Skip to content

Commit 7a0c653

Browse files
committed
Merge pull request #730 from sodabrew/ci_workarounds
Add Ruby 2.3 and a few CI workarounds for reliability
2 parents fcb1a8b + 69d1bcd commit 7a0c653

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
sudo: required
22
language: ruby
33
bundler_args: --without benchmarks development
4+
# Temporary workaround for broken Rubygems on Travis
45
before_install:
6+
- gem update --system 2.4.8
57
- gem --version
68
- bash .travis_setup.sh
79
os:
@@ -10,11 +12,12 @@ addons:
1012
hosts:
1113
- mysql2gem.example.com
1214
rvm:
13-
- 1.8.7
14-
- 1.9.3
15-
- 2.0.0
16-
- 2.1
15+
- 2.3.0
1716
- 2.2
17+
- 2.1
18+
- 2.0.0
19+
- 1.9.3
20+
- 1.8.7
1821
- ree
1922
- rbx-2
2023
- ruby-head

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ test_script:
2525
# - find tmp -name "*.log" -exec cat {};
2626
environment:
2727
matrix:
28-
- ruby_version: "200"
29-
- ruby_version: "200-x64"
30-
- ruby_version: "21"
31-
- ruby_version: "21-x64"
32-
- ruby_version: "22"
3328
- ruby_version: "22-x64"
29+
- ruby_version: "22"
30+
- ruby_version: "21-x64"
31+
- ruby_version: "21"
32+
- ruby_version: "200-x64"
33+
- ruby_version: "200"
3434
cache:
3535
- vendor
3636
services:

0 commit comments

Comments
 (0)