From c28827382a364726a2bbde97934bfb4afa4211b4 Mon Sep 17 00:00:00 2001 From: Jared Roesch Date: Thu, 1 Apr 2021 12:14:02 -0700 Subject: [PATCH] Disable docs --- tests/scripts/task_python_docs.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/scripts/task_python_docs.sh b/tests/scripts/task_python_docs.sh index 459b680daeb1b..1eb75be830c3b 100755 --- a/tests/scripts/task_python_docs.sh +++ b/tests/scripts/task_python_docs.sh @@ -74,7 +74,8 @@ cd .. # Rust doc cd rust -cargo doc --workspace --no-deps +# Temp disable rust doc build +# cargo doc --workspace --no-deps cd .. # Prepare the doc dir @@ -84,7 +85,7 @@ rm -f _docs/.buildinfo mkdir -p _docs/api mv docs/doxygen/html _docs/api/doxygen mv jvm/core/target/site/apidocs _docs/api/javadoc -mv rust/target/doc _docs/api/rust +# mv rust/target/doc _docs/api/rust mv web/dist/docs _docs/api/typedoc echo "Start creating the docs tarball.."