Skip to content

Merge branch 'master' into rails8_v1

99ac951
Select commit
Loading
Failed to load commit list.
Open

Rails8 #57

Merge branch 'master' into rails8_v1
99ac951
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Nov 28, 2025 in 43s

Build Errored

The build errored. This is a change from the previous build, which passed.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #57 Rails8.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has two jobs, running in parallel.

Job Ruby ENV OS State
147.1 2.3.1 DB=mysql Linux errored
147.2 2.3.1 DB=postgresql Linux errored

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Focal)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "cache": {
    "bundler": true
  },
  "before_script": [
    "bin/ci-setup"
  ],
  "jobs": {
    "include": [
      {
        "rvm": "2.3.1",
        "env": [
          {
            "DB": "mysql"
          },
          {
            "CONN_STR": "'DRIVER=MySQL;SERVER=localhost;DATABASE=odbc_test;USER=root;PASSWORD=;'"
          }
        ],
        "addons": {
          "mysql": "5.5",
          "apt": {
            "packages": [
              "unixodbc",
              "unixodbc-dev",
              "libmyodbc",
              "mysql-client"
            ]
          }
        }
      },
      {
        "rvm": "2.3.1",
        "env": [
          {
            "DB": "postgresql"
          },
          {
            "CONN_STR": "'DRIVER={PostgreSQL ANSI};SERVER=localhost;PORT=5432;DATABASE=odbc_test;UID=postgres;'"
          }
        ],
        "addons": {
          "postgresql": "9.1",
          "apt": {
            "packages": [
              "unixodbc",
              "unixodbc-dev",
              "odbc-postgresql"
            ]
          }
        }
      }
    ]
  }
}