Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/reference/api/links.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ build system.
* `C++ doyxgen API <doxygen/index.html>`_
* `Typescript typedoc API <typedoc/index.html>`_
* `Java Javadoc API <javadoc/index.html>`_
* `Rust Rustdoc API <rust/index.html>`_
4 changes: 2 additions & 2 deletions tests/scripts/task_python_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,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
Expand All @@ -173,7 +173,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
git rev-parse HEAD > _docs/commit_hash

Expand Down