Skip to content

Commit f93b954

Browse files
authored
chore(docs): Add missing dependency to docs build and ensure build fails if quarto render fails (apache#445)
1 parent 6d2c44b commit f93b954

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/scripts/build-docs.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ pushd "${SEDONADB_DIR}/docs/reference/functions"
4040
find . -name "*.md" -delete
4141

4242
# Render the Quarto project
43-
quarto render
43+
if quarto render ; then
44+
echo "Function reference Quarto project rendered successfully"
45+
else
46+
echo "Function reference Quarto project build failed"
47+
exit 1
48+
fi
4449

4550
popd
4651

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
griffe
1919
ipykernel
20+
matplotlib
2021
mike
2122
mkdocs
2223
mkdocs-git-revision-date-localized-plugin

0 commit comments

Comments
 (0)