Skip to content

Commit

Permalink
Remove MariaDB 10.2 unit test (#10700)
Browse files Browse the repository at this point in the history
10.2 is now EOL:
  https://mariadb.com/kb/en/mariadb-server-release-dates/
  https://endoflife.date/mariadb

And we also deprecated MariaDB support in v14+:
  #9518

Signed-off-by: Matt Lord <mattalord@gmail.com>
  • Loading branch information
mattlord authored Jul 18, 2022
1 parent dddf858 commit ad471ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 97 deletions.
95 changes: 0 additions & 95 deletions .github/workflows/unit_test_mariadb102.yml

This file was deleted.

3 changes: 1 addition & 2 deletions test/ci_workflow_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ type mysqlVersion string
const (
mysql57 mysqlVersion = "mysql57"
mysql80 mysqlVersion = "mysql80"
mariadb102 mysqlVersion = "mariadb102"
mariadb103 mysqlVersion = "mariadb103"

defaultMySQLVersion mysqlVersion = mysql57
Expand All @@ -46,7 +45,7 @@ var (
)

var (
unitTestDatabases = []mysqlVersion{mysql57, mysql80, mariadb102, mariadb103}
unitTestDatabases = []mysqlVersion{mysql57, mysql80, mariadb103}
)

const (
Expand Down

0 comments on commit ad471ed

Please sign in to comment.