This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch branch-0.2.0 in repository https://gitbox.apache.org/repos/asf/sedona-db.git
commit 42c861519ec8d2783eaf279a4b600778b6ce6d50 Author: Dewey Dunnington <[email protected]> AuthorDate: Fri Dec 12 13:48:11 2025 -0600 chore(docs): Add missing dependency to docs build and ensure build fails if quarto render fails (#445) --- ci/scripts/build-docs.sh | 7 ++++++- docs/requirements.txt | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ci/scripts/build-docs.sh b/ci/scripts/build-docs.sh index f6d333d2..f3d7f256 100755 --- a/ci/scripts/build-docs.sh +++ b/ci/scripts/build-docs.sh @@ -40,7 +40,12 @@ pushd "${SEDONADB_DIR}/docs/reference/functions" find . -name "*.md" -delete # Render the Quarto project -quarto render +if quarto render ; then + echo "Function reference Quarto project rendered successfully" +else + echo "Function reference Quarto project build failed" + exit 1 +fi popd diff --git a/docs/requirements.txt b/docs/requirements.txt index 53f6716c..72078fba 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -17,6 +17,7 @@ griffe ipykernel +matplotlib mike mkdocs mkdocs-git-revision-date-localized-plugin
