Skip to content

Commit

Permalink
MNT #953 *now* the impatient guide
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Dec 10, 2021
1 parent e376653 commit 6b02bfc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ jobs:
texlive-fonts-recommended
- name: Build impatient guide
run: |
make -C build/impatient-guide html latexpdf
- name: Build PDF of manual
run: |
# expect next make (PDF) to fail (thus exit 0) since nexus.ind not found first time
# extra option needed to satisfy "levels nested too deeply" error
Expand All @@ -57,8 +61,8 @@ jobs:
# build the PDF, still a failure will be noted but we can ignore it without problem
(make latexpdf LATEXOPTS="--interaction=nonstopmode" -C build/manual || exit 0)
# finally, report what was built
@echo "HTML built: `ls -lAFgh build/manual/build/html/index.html`"
@echo "PDF built: `ls -lAFgh build/manual/build/latex/nexus.pdf`"
echo "HTML built: `ls -lAFgh build/manual/build/html/*.html`"
echo "PDF built: `ls -lAFgh build/manual/build/latex/*.pdf`"
- name: Diagnostic
run: |
Expand Down

0 comments on commit 6b02bfc

Please sign in to comment.