From 3a7f731b7d6f9637740624a48301672b9fba0bb6 Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Tue, 21 Sep 2021 19:44:27 +0700 Subject: [PATCH] Fix PDF builds --- .github/workflows/deploy-branch.yml | 2 ++ build_submodules.sh | 2 +- pdf/conf.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-branch.yml b/.github/workflows/deploy-branch.yml index a88f2c6f64..209daad006 100644 --- a/.github/workflows/deploy-branch.yml +++ b/.github/workflows/deploy-branch.yml @@ -37,6 +37,8 @@ jobs: - run: cmake . - run: make pull-modules - run: make build-modules + - run: make pdf + - run: make pdf-ru - run: make json - run: make json-ru - run: bash upload_output.sh diff --git a/build_submodules.sh b/build_submodules.sh index 10268ac10d..39daa28084 100755 --- a/build_submodules.sh +++ b/build_submodules.sh @@ -58,7 +58,7 @@ CMAKE_DUMMY_WEBUI=true tarantoolctl rocks make cd "${rst_src}" || exit mkdir -p "${rst_dest}" -find . -iregex '.*\.\(rst\|png\|puml\)$' -exec cp -r --parents {} "${rst_dest}" \; +find . -iregex '.*\.\(rst\|png\|puml\|svg\)$' -exec cp -r --parents {} "${rst_dest}" \; cd "${pot_src}" || exit mkdir -p "${pot_dest}" diff --git a/pdf/conf.py b/pdf/conf.py index b4c575cc5e..95e8fb254f 100644 --- a/pdf/conf.py +++ b/pdf/conf.py @@ -9,6 +9,8 @@ 'sphinx.ext.imgmath', 'sphinx.ext.ifconfig', 'sphinx.ext.intersphinx', + 'sphinx.ext.extlinks', + 'sphinxcontrib.plantuml', 'sphinxcontrib.rsvgconverter', 'ext.custom', 'ext.LuaDomain',