From b4220aab68bd8fe36a3189d865971d8645a02f34 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sat, 18 Oct 2025 10:40:16 +0900 Subject: [PATCH] Test with MySQL 8.4 (#3860) --- src/test/scala/gitbucket/core/GitBucketCoreModuleSpec.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/test/scala/gitbucket/core/GitBucketCoreModuleSpec.scala b/src/test/scala/gitbucket/core/GitBucketCoreModuleSpec.scala index b29b7928e..2892348eb 100644 --- a/src/test/scala/gitbucket/core/GitBucketCoreModuleSpec.scala +++ b/src/test/scala/gitbucket/core/GitBucketCoreModuleSpec.scala @@ -26,7 +26,7 @@ class GitBucketCoreModuleSpec extends AnyFunSuite { implicit private val suiteDescription: Description = Description.createSuiteDescription(getClass) - Seq("8.0", "5.7").foreach { tag => + Seq("8.4", "5.7").foreach { tag => test(s"Migration MySQL $tag", ExternalDBTest) { val container = new MySQLContainer() { override val container: org.testcontainers.containers.MySQLContainer[?] = @@ -34,8 +34,6 @@ class GitBucketCoreModuleSpec extends AnyFunSuite { override def getDriverClassName = "org.mariadb.jdbc.Driver" override def getJdbcUrl: String = super.getJdbcUrl + "?permitMysqlScheme" } - // TODO https://jira.mariadb.org/browse/CONJ-663 - container.withCommand("mysqld --default-authentication-plugin=mysql_native_password") } container.start() try {