Skip to content

Commit fafa7ff

Browse files
authored
CI re-enablement (#259)
CI re-enablement (#259)
1 parent d752d98 commit fafa7ff

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@
1414
/lib/cassandra_murmur3.*
1515
/node_modules
1616
/*.gem
17-
/.bundle/*
17+
/.bundle/*
18+
/.idea/

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ bundler_args: --without development docs
44
rvm:
55
- 2.2.4
66
- 2.3.0
7+
- 2.4
8+
- 2.5
9+
- 2.6
10+
- 2.7
711
- jruby-9.0.5.0
12+
jdk:
13+
- openjdk8
814
env:
915
global:
1016
- FAIL_FAST=no
@@ -15,6 +21,9 @@ branches:
1521
only:
1622
- master
1723
before_install: |
24+
# Install bundler < 2.0, see https://docs.travis-ci.com/user/languages/ruby/
25+
gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
26+
gem install bundler -v '< 2'
1827
if [[ k$TRAVIS_RUBY_VERSION = kjruby* ]] ; then
1928
# Hack the Gemfile.lock file to indicate we're a JRuby gem, to make bundler happy.
2029
sed -e 's/\(cassandra-driver [^)]*\)/\1-java/' -i"" Gemfile.lock

build.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ ruby:
1717
- jruby9k
1818

1919
cassandra:
20-
- 2.1
21-
- 2.2
22-
- 3.0
20+
- '2.1'
21+
- '3.0'
2322
- '3.11'
23+
- '4.0'
2424
os:
2525
- ubuntu/bionic64/ruby-driver
2626
build:

0 commit comments

Comments
 (0)