Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ruby 3.x support #278

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

ruby 3.2 and 3.3

11b3379
Select commit
Loading
Failed to load commit list.
Open

Add Ruby 3.x support #278

ruby 3.2 and 3.3
11b3379
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action May 2, 2024 in 23m 44s

Build Errored

The build errored, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #278 Add Ruby 3.x to CI testing.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has ten jobs, running in parallel.

Job JDK Ruby ENV OS State
1132.1 openjdk8 2.3.0 FAIL_FAST=no Linux passed
1132.2 openjdk8 2.4 FAIL_FAST=no Linux passed
1132.3 openjdk8 2.5 FAIL_FAST=no Linux passed
1132.4 openjdk8 2.6 FAIL_FAST=no Linux passed
1132.5 openjdk8 2.7 FAIL_FAST=no Linux passed
1132.6 openjdk8 3.0 FAIL_FAST=no Linux passed
1132.7 openjdk8 3.1 FAIL_FAST=no Linux passed
1132.8 openjdk8 3.2 FAIL_FAST=no Linux passed
1132.9 openjdk8 3.3 FAIL_FAST=no Linux passed
1132.10 openjdk8 jruby-9.0.5.0 FAIL_FAST=no Linux errored

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
JDK Version openjdk8
Ruby Versions 2.3.0, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, jruby-9.0.5.0
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "script": [
    "bundle exec rake rspec"
  ],
  "bundler_args": "--without development docs",
  "rvm": [
    "2.3.0",
    "2.4",
    "2.5",
    "2.6",
    "2.7",
    "3.0",
    "3.1",
    "3.2",
    "3.3",
    "jruby-9.0.5.0"
  ],
  "jdk": [
    "openjdk8"
  ],
  "env": [
    "global={:FAIL_FAST=>\"no\"}={:COVERAGE=>\"no\"}"
  ],
  "branches": {
    "only": [
      "master"
    ]
  },
  "before_install": [
    "# Install bundler < 2.0, see https://docs.travis-ci.com/user/languages/ruby/\ngem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true\ngem install bundler -v '< 2'\n\nRUBY_MAJOR=$(echo \"$TRAVIS_RUBY_VERSION\" | cut -d. -f1)\nRUBY_MINOR=$(echo \"$TRAVIS_RUBY_VERSION\" | cut -d. -f2)\nif [[ k$TRAVIS_RUBY_VERSION = kjruby* ]] ; then\n  # Hack the Gemfile.lock file to indicate we're a JRuby gem, to make bundler happy.\n  sed -e 's/\\(cassandra-driver [^)]*\\)/\\1-java/' -i\"\" Gemfile.lock\nelif (( $RUBY_MAJOR >= 3 && $RUBY_MINOR >= 2)); then\n  # Hack the Gemfile.lock, bundler 1.x does not work with Ruby 3.2+\n  sed -e 's/   1\\.17\\.3/   2.5.9/g' -i\"\" Gemfile.lock\n  sed -e 's/bundler (~> 1\\.6)/bundler (~> 2.5)/g' -i\"\" Gemfile.lock\n  # Hack the gemspec, bundler 1.x does not work with Ruby 3.2+\n  sed -e \"s/'bundler', '~> 1\\.6'/'bundler', '~> 2.5'/g\" -i\"\" cassandra-driver.gemspec\nfi"
  ],
  "jobs": {
    "fast_finish": true
  }
}