FANNG1 commented on code in PR #10517:
URL: https://github.com/apache/gravitino/pull/10517#discussion_r3148231041
##########
settings.gradle.kts:
##########
@@ -82,8 +82,11 @@ include(
include("spark-connector:spark-common")
if (scalaVersion == "2.12") {
// flink only support scala 2.12
- include("flink-connector:flink")
- include("flink-connector:flink-runtime")
+ include("flink-connector:flink-common")
+ include("flink-connector:flink-1.18", "flink-connector:flink-runtime-1.18")
+ project(":flink-connector:flink-1.18").projectDir =
file("flink-connector/v1.18/flink")
+ project(":flink-connector:flink-runtime-1.18").projectDir =
+ file("flink-connector/v1.18/flink-runtime")
Review Comment:
Checked and fixed. The issue was that a few CI workflows still excluded the
removed `:flink-connector:flink` path, so they no longer actually skipped the
versioned Flink modules after the split. I updated the remaining exclusions to
the new module paths in
`.github/workflows/backend-integration-test-action.yml`,
`.github/workflows/trino-integration-test.yml`, and
`.github/workflows/trino-multi-version-test.yml`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]