Skip to content

Commit

Permalink
add LuaLaTeX to CI build workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelroland committed Oct 17, 2024
1 parent 5059735 commit 0a1cfa1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/workflows/test-build-latex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,15 @@ jobs:
job_engine: pdfxe
job_source: ${{ env.SOURCE_NAME }}
job_artifact_suffix: -xelatex

build-lualatex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: ./.github/actions/latexmk-and-output
with:
job_engine: pdflua
job_source: ${{ env.SOURCE_NAME }}
job_artifact_suffix: -lualatex
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include:
parallel:
matrix:
- LATEX_BUILDPDF_SOURCE_NAME: [main]
LATEX_BUILDPDF_TEX_COMMAND: [pdflatex, xelatex]
LATEX_BUILDPDF_TEX_COMMAND: [pdflatex, xelatex, lualatex]

latex_build_pdf:
extends:
Expand Down

0 comments on commit 0a1cfa1

Please sign in to comment.