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

Rails7 v2 #56

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

fix raw connection issue

6e9eb79
Select commit
Loading
Failed to load commit list.
Open

Rails7 v2 #56

fix raw connection issue
6e9eb79
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request required action Aug 13, 2024 in 1m 35s

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 #56 Rails7 v2.
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
146.1 2.3.1 DB=mysql Linux errored
146.2 2.3.1 DB=postgresql Linux errored

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Xenial)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "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"
            ]
          }
        }
      }
    ]
  }
}