From 3f76dd7e8ee8843857df9abb70a8f9080f961127 Mon Sep 17 00:00:00 2001 From: Naveen Date: Tue, 6 Dec 2022 00:29:35 +0000 Subject: [PATCH] Exclude jacocoTestReport in distribution build Signed-off-by: Naveen --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 46f0f43c5..3c9fa4777 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -103,7 +103,7 @@ fi # Build k-NN lib and plugin through gradle tasks cd $work_dir # Gradle build is used here to replace gradle assemble due to build will also call cmake and make before generating jars -./gradlew build --no-daemon --refresh-dependencies -x integTest -DskipTests=true -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT -Dbuild.version_qualifier=$QUALIFIER +./gradlew build --no-daemon --refresh-dependencies -x integTest -x jacocoTestReport -DskipTests=true -Dopensearch.version=$VERSION -Dbuild.snapshot=$SNAPSHOT -Dbuild.version_qualifier=$QUALIFIER # Add lib to zip zipPath=$(find "$(pwd)" -path \*build/distributions/*.zip)