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

Use mysql2 lib to be able to use MySQL 8 #20

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

use mysql2

80ca7d6
Select commit
Loading
Failed to load commit list.
Open

Use mysql2 lib to be able to use MySQL 8 #20

use mysql2
80ca7d6
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request failed Sep 28, 2023 in 1m 1s

Build Failed

The build failed. 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 #20 Use mysql2 lib to be able to use MySQL 8.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has four jobs, running in parallel.

Job Node.js ENV OS State
108.1 10 DB_USER=mp DB_PASS='mp' Linux failed
108.2 12 DB_USER=mp DB_PASS='mp' Linux failed
108.3 14 DB_USER=mp DB_PASS='mp' Linux passed
108.4 16 DB_USER=mp DB_PASS='mp' Linux passed

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Xenial)
Node.js Versions 10, 12, 14, 16
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "xenial",
  "node_js": [
    "10",
    "12",
    "14",
    "16"
  ],
  "branches": {
    "only": [
      "master"
    ]
  },
  "notifications": {
    "email": [
      {
        "recipients": [
          "[email protected]"
        ]
      }
    ]
  },
  "sudo": false,
  "services": [
    "mysql"
  ],
  "env": [
    "jobs={:DB_USER=>\"mp\", :DB_PASS=>\"'mp'\"}"
  ],
  "before_script": [
    "mysql -e 'create database mppg;'",
    "mysql -e \"create user 'mp'@'localhost' identified by 'mp';\"",
    "mysql -e \"grant all privileges on * . * to 'mp'@'localhost';\" -u root",
    "mysql -e \"flush privileges;\" -u root"
  ]
}