This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 1389c4ee4 [#4253] fix(gradle): fix compileDistribution failed (#4254)
1389c4ee4 is described below
commit 1389c4ee4a9133b48c0b905fd8fff40a3725f743
Author: mchades <[email protected]>
AuthorDate: Wed Jul 24 16:17:10 2024 +0800
[#4253] fix(gradle): fix compileDistribution failed (#4254)
### What changes were proposed in this pull request?
exclude `integration-test-common` when compileDistribution
### Why are the changes needed?
Fix: #4253
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
run `./gradlew compileDistribution` by hand
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 6a4be7dff..2fcba8a8b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -700,8 +700,8 @@ tasks {
!it.name.startsWith("filesystem") &&
!it.name.startsWith("spark") &&
!it.name.startsWith("iceberg") &&
+ !it.name.startsWith("integration-test") &&
it.name != "trino-connector" &&
- it.name != "integration-test" &&
it.name != "bundled-catalog" &&
it.name != "flink-connector"
) {