Skip to content

Commit

Permalink
Avoid texlive-full for docs CI
Browse files Browse the repository at this point in the history
  • Loading branch information
albinahlback committed Mar 11, 2025
1 parent 98c49a7 commit 0aa6467
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:

- name: "Setup"
run: |
sudo apt-get install -y python3-sphinx texlive-full
sudo apt-get install -y python3-sphinx
# See https://www.sphinx-doc.org/en/master/usage/builders/index.html#sphinx.builders.latex.LaTeXBuilder
sudo apt-get install -y texlive-latex-recommended texlive-fonts-recommended texlive-fonts-extra tex-gyre texlive-latex-extra latexmk
sphinx-build --version
- name: "Build documentation"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,9 @@ jobs:
- if: env.TAG_NAME != 'nightly'
name: "Build PDF documentation"
run: |
sudo apt-get install -y python3-sphinx texlive-full
sudo apt-get install -y python3-sphinx
# See https://www.sphinx-doc.org/en/master/usage/builders/index.html#sphinx.builders.latex.LaTeXBuilder
sudo apt-get install -y texlive-latex-recommended texlive-fonts-recommended texlive-fonts-extra tex-gyre texlive-latex-extra latexmk
sphinx-build --version
tar -xf flint-${FLINT_VERSION}.tar.gz
cd flint-${FLINT_VERSION}/doc/
Expand Down

0 comments on commit 0aa6467

Please sign in to comment.