Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/ci/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ javadoc_output=/tmp/javadoc.out
# use the same invocation as .github/workflows/docs.sh
$MVN javadoc:aggregate -DadditionalJOption='-Xdoclint:none' \
-Dmaven.javadoc.failOnError=false -Dcheckstyle.skip=true -Denforcer.skip=true -Dspotless.skip=true -Drat.skip=true \
-Dheader=someTestHeader > ${javadoc_output}
-Dheader=someTestHeader -Pskip-webui-build > ${javadoc_output}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something wrong is happening with azure

compile takes more than 2 hours for the recent master build https://dev.azure.com/apache-flink/apache-flink/_build/results?buildId=71583&view=results

at the same time with this change it takes only one hour https://dev.azure.com/apache-flink/apache-flink/_build/results?buildId=71589&view=logs&s=ae4f8708-9994-57d3-c2d7-b892156e7812&j=52b61abe-a3cc-5bde-cc35-1bbe89bb7df5

At the same time I still tend to think that the problem is somewhere on azure or Alibaba (we use their server there) side, since there is no noticeable change in GHA

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense to skip the tests short term. Is there a Jira to track this issue and maybe include the Jira number in a comment here.

Copy link
Contributor Author

@snuyanzin snuyanzin Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't think it is short term, there is no javadocs in web ui build, so anyway it doesn't make sense to include it while building javadoc

in case of hotfix it doesn't make sense to create a jira imho

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok that makes sense- thanks for the extra detail.

EXIT_CODE=$?
if [ $EXIT_CODE != 0 ] ; then
echo "ERROR in Javadocs. Printing full output:"
Expand Down