CircleCI update for MariaDB.
This commit is contained in:
parent
0dbdbb9220
commit
b656fa2ef1
2 changed files with 63 additions and 2 deletions
|
|
@ -12,6 +12,7 @@ import (
|
|||
"io/ioutil"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
)
|
||||
|
||||
var testSuite string
|
||||
|
|
@ -24,12 +25,14 @@ func init() {
|
|||
|
||||
func main() {
|
||||
|
||||
testSuite = strings.ToLower(testSuite)
|
||||
|
||||
if testSuite == "postgres" {
|
||||
initPostgresDB()
|
||||
return
|
||||
}
|
||||
|
||||
if testSuite == "mysql" {
|
||||
if testSuite == "mysql" || testSuite == "mariadb" {
|
||||
initMySQLDB()
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue