From 1b9ea915c556a82ee4d4619c07e7e444e6acf47d Mon Sep 17 00:00:00 2001 From: mchades Date: Fri, 7 Jun 2024 13:49:39 +0800 Subject: [PATCH] split trino tests --- .github/workflows/trino-integration-test.yml | 2 +- integration-test/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/trino-integration-test.yml b/.github/workflows/trino-integration-test.yml index f9721943c8e..b8fa276fcb6 100644 --- a/.github/workflows/trino-integration-test.yml +++ b/.github/workflows/trino-integration-test.yml @@ -1,4 +1,4 @@ -name: Backend Integration Test +name: Trino Integration Test # Controls when the workflow will run on: diff --git a/integration-test/build.gradle.kts b/integration-test/build.gradle.kts index ea1cbf7aff0..ca85f2e31f1 100644 --- a/integration-test/build.gradle.kts +++ b/integration-test/build.gradle.kts @@ -177,8 +177,8 @@ tasks.test { if (invalidGravitinoJars!!.isNotEmpty()) { val message = "Found mismatched versions of gravitino jars in trino-connector/build/libs:\n" + - "${invalidGravitinoJars.joinToString(", ") { it.name }}\n" + - "The current version of the project is $version. Please clean the project and rebuild it." + "${invalidGravitinoJars.joinToString(", ") { it.name }}\n" + + "The current version of the project is $version. Please clean the project and rebuild it." throw GradleException(message) } }