Use mysql2 lib to be able to use MySQL 8 #20
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"
]
}
Loading