This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch release-0.1
in repository https://gitbox.apache.org/repos/asf/flink-table-store.git
The following commit(s) were added to refs/heads/release-0.1 by this push:
new 9fa1101 [hotfix] Build java docs in docs.sh
9fa1101 is described below
commit 9fa1101f89b275dcf2f01a0cf7e96d416d114fe0
Author: JingsongLi <[email protected]>
AuthorDate: Fri Apr 1 20:00:06 2022 +0800
[hotfix] Build java docs in docs.sh
---
.github/workflows/docs.sh | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/.github/workflows/docs.sh b/.github/workflows/docs.sh
index c677a31..2810b58 100755
--- a/.github/workflows/docs.sh
+++ b/.github/workflows/docs.sh
@@ -37,3 +37,17 @@ if [ $? -ne 0 ]; then
echo "Error building the docs"
exit 1
fi
+
+# build Flink Table Store; required for Javadoc step
+mvn clean install -B -DskipTests
+
+# build java/scala docs
+mkdir -p docs/target/api
+mvn javadoc:aggregate -B \
+ -DadditionalJOption="-Xdoclint:none --allow-script-in-comments" \
+ -Dmaven.javadoc.failOnError=false \
+ -Dcheckstyle.skip=true \
+ -Dspotless.check.skip=true \
+ -Denforcer.skip=true \
+ -Dheader="<a href=\"http://flink.apache.org/\" target=\"_top\"><h1>Back to
Flink Website</h1></a> <script>var
_paq=window._paq=window._paq||[];_paq.push([\"disableCookies\"]),_paq.push([\"setDomains\",[\"*.flink.apache.org\",\"*.nightlies.apache.org/flink\"]]),_paq.push([\"trackPageView\"]),_paq.push([\"enableLinkTracking\"]),function(){var
u=\"//matomo.privacy.apache.org/\";_paq.push([\"setTrackerUrl\",u+\"matomo.php\"]),_paq.push([\"setSiteId\",\"1\"]);var
d=document, g=d.createEle [...]
+mv target/site/apidocs docs/target/api/java