Skip to content

Commit

Permalink
docs: enable latex
Browse files Browse the repository at this point in the history
close #262
  • Loading branch information
hyoklee committed Oct 4, 2024
1 parent 0c9dab8 commit 89b4702
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/cyg-ninja-f.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
cmake -G Ninja \
-D SITE:STRING=cwin \
-DBUILDNAME:STRING="ninja/f" \
-D BUILD_SHARED_LIBS:BOOL=OFF \
-DHDF5_BUILD_FORTRAN:BOOL=ON \
-D CTEST_DROP_SITE_INIT:STRING="my.cdash.org" \
..
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: doxygen gh-pages
name: doxygen gh-pages pdf

on:
workflow_dispatch:
push:
pull_request:
branches: [ develop- ]
branches: [ develop ]
paths-ignore:
- '.github/CODEOWNERS'
- '.github/FUNDING.yml'
Expand Down Expand Up @@ -35,7 +35,10 @@ jobs:
sudo apt-get install -y graphviz
sudo apt-get install -y --no-install-recommends doxygen
sudo apt-get install -y cmake
sudo apt-get install texlive-latex-base
sudo apt-get install texlive-fonts-extra
sudo apt-get install texlive-latex-extra
- name: Build Develop Documentation
run: |
mkdir build
Expand All @@ -46,6 +49,8 @@ jobs:
ls -l hdf5lib_docs
cd hdf5lib_docs/html
touch .nojekyll
cd ../latex
make
- name: Deploy Develop
uses: peaceiris/actions-gh-pages@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/s390x-lin-f.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
-DBUILDNAME:STRING=f \
-DCTEST_DROP_SITE_INIT:STRING="my.cdash.org" \
-DHDF5_BUILD_FORTRAN:BOOL=ON \
-DSITE:STRING=s390x \
-DBUILD_SHARED_LIBS:BOOL=OFF \
-DSITE:STRING=s390x \
..
ctest -D Experimental
Expand Down
2 changes: 1 addition & 1 deletion doxygen/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ EXTRA_SEARCH_MAPPINGS =
# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
# The default value is: YES.

GENERATE_LATEX = NO
GENERATE_LATEX = YES

#---------------------------------------------------------------------------
# Configuration options related to the RTF output
Expand Down

0 comments on commit 89b4702

Please sign in to comment.