You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by jr...@apache.org on 2021/10/14 17:37:15 UTC

[tvm] 01/01: Re-enable Rust documentation build

This is an automated email from the ASF dual-hosted git repository.

jroesch pushed a commit to branch fix-rust-doc
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit 52c716b1b5e84a87b66a50bd32c4bc937db6741c
Author: Jared Roesch <ro...@gmail.com>
AuthorDate: Thu Oct 14 10:36:03 2021 -0700

    Re-enable Rust documentation build
---
 tests/scripts/task_python_docs.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/scripts/task_python_docs.sh b/tests/scripts/task_python_docs.sh
index 765c841..9300682 100755
--- a/tests/scripts/task_python_docs.sh
+++ b/tests/scripts/task_python_docs.sh
@@ -76,7 +76,7 @@ cd ..
 # Rust doc
 cd rust
 # Temp disable rust doc build
-# cargo doc --workspace --no-deps
+cargo doc --workspace --no-deps
 cd ..
 
 # Prepare the doc dir
@@ -86,7 +86,7 @@ rm -f _docs/.buildinfo
 mkdir -p _docs/reference/api
 mv docs/doxygen/html _docs/reference/api/doxygen
 mv jvm/core/target/site/apidocs _docs/reference/api/javadoc
-# mv rust/target/doc _docs/api/rust
+mv rust/target/doc _docs/api/rust
 mv web/dist/docs _docs/reference/api/typedoc
 
 echo "Start creating the docs tarball.."