Skip to content

Commit 76c8549

Browse files
committed
.github/workflows/doc-build.yml: Use make sagemath_doc_html-build-deps, make sagemath_doc_html-no-deps
1 parent 6d7bcf9 commit 76c8549

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/doc-build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
id: incremental
8686
run: |
8787
# Now re-bootstrap and build. The build is incremental because we were careful with the timestamps.
88-
./bootstrap && make build
88+
./bootstrap && make sagemath_doc_html-build-deps
8989
working-directory: ./worktree-image
9090
env:
9191
MAKE: make -j2 --output-sync=recurse
@@ -96,7 +96,7 @@ jobs:
9696
if: always() && steps.worktree.outcome == 'success' && steps.incremental.outcome != 'success'
9797
run: |
9898
set -ex
99-
make sagelib-clean && git clean -fx src/sage && ./config.status && make build
99+
make sagelib-clean && git clean -fx src/sage && ./config.status && make sagemath_doc_html-build-deps
100100
working-directory: ./worktree-image
101101
env:
102102
MAKE: make -j2 --output-sync=recurse
@@ -113,7 +113,7 @@ jobs:
113113
mv /sage/local/share/doc/sage/html/en/.git /sage/.git-doc
114114
make doc-clean doc-uninstall
115115
mkdir -p /sage/local/share/doc/sage/html/en/ && mv /sage/.git-doc /sage/local/share/doc/sage/html/en/.git
116-
./config.status && make doc-html
116+
./config.status && make sagemath_doc_html-no-deps
117117
working-directory: ./worktree-image
118118
env:
119119
MAKE: make -j2 --output-sync=recurse

0 commit comments

Comments
 (0)